私は私のオブジェクトから取得した値に応じてラジオボタンをデフォルトとしてマークしようとしていますが、TrueまたはFalseにすることができます。 オプションに応じて、デフォルトのラジオボタンとしてマークする方法を教えてください。 角4デフォルトのradioButtonデフォルトでチェックされます
<label>This rule is true if:</label>
<label class="form-check-inline">
<input class="form-check-input" type="radio" name="mode"
value="true" [(ngModel)]="rule.mode"> all the following conditions are true
</label>
<label class="form-check-inline">
<input class="form-check-input" type="radio" name="mode" value="false" [(ngModel)]="rule.mode"> at least one of the following conditions is true
</label>
は私が真または偽で得た:「rule.mode」
[attr.checked] = "role.mode" –
この@BharatChauhanは 'INIT-のみ' の値を設定するための完璧な正解です。ありがとう! – CularBytes