我可以通过ng-repeat
动态添加HTML属性吗?
<select>
<option ng-repeat="thing in things" {{thing.ghosted||'disabled'}}>
{{thing.name}}
</option>
</select>
我在这里做错了什么?
答案 0 :(得分:3)
对于这样的事情,使用指令是好的。
<select>
<option ng-repeat="thing in things" ng-disabled="thing.ghosted">
{{thing.name}}
</option>
</select>