给定以下 JSON 对象,使用 ko.mapping 进行映射:
{ AllowNotifications: ko.observable(true) }
我想将一个布尔值绑定到一个单选按钮,以便如果 True 一个单选被选中,如果 False 则另一个被选中。
<input data-bind="checked: AllowNotifications" type="radio" name="allowNotifications" value="true"><label class="small positive" for="objectNotifications_true">Yes</label>
<input data-bind="checked: AllowNotifications" type="radio" name="allowNotifications" value="false"><label class="small negative" for="objectNotifications_false">No</label>
目前,尽管没有引发错误,但这并没有正确绑定。为什么这不起作用?