而不是这样做
<input type="checkBox" name="AltSchedule" ng-show="someVar" />
我想能够做到这一点
@Html.CheckBoxFor(model => model.AltSchedule,new {ng-show="someVar" })
但我似乎无法找到一个答案,谁来完成使用角色标签的html助手。有没有办法为html帮助器的html属性参数添加角度标签?
解决方法
当控件呈现时,htmlAttributes参数中的下划线将转换为连字符:
@Html.CheckBoxFor(model => model.AltSchedule,new {ng_show="someVar" })