最佳答案
我需要能够添加例如“contentteditable”元素,基于范围上的布尔变量。
使用示例:
<h1 attrs="{'contenteditable=\"true\"': editMode}">{{content.title}}</h1>
如果$scope.editMode
设置为true
,将导致contentteditable =true被添加到元素中。
是否有一些简单的方法来实现这种ng-class属性行为?我正在考虑写一个指令,如果没有共享
<强>编辑: 我可以看到,我提议的attrs指令和Ng-bind-attrs,但在1.0.0.rc3中被删除之间似乎有一些相似之处,为什么会这样呢?< / p >