我在 MVC 4 中使用 Knockout。我的 cshtml 是:
...
<span>@Html.RadioButtonFor(m => m.isActive, true, new { @class = "statusRadioButton", data_bind = "checked: isActive" })</span>
<span>@Html.RadioButtonFor(m => m.isActive, false, new { @class = "statusRadioButton", data_bind = "checked: isActive" })</span>
...
我的柯:
...
self.isActive = ko.observable(product.isActive);
...
它会正确更新数据库,但在加载页面时它不会显示任何已选中的单选按钮。我也尝试使用 checked = "checked" html 属性,但它也不起作用。有什么建议吗?