有没有办法在AngularJS指令中观察函数表达式更改的值?我有以下HTML和Javascript,模板中{{editable()}}
的插值显示值的计算结果为true,而检查Chrome中的HTML元素则显示contenteditable
为false。
关于如何观察此函数的值的任何建议会更改,并相应地更新元素attr?或者有更好的方法来实现这一点(我还想评估这个功能)?
HTML:
<h4 editable="account.hasRole('ROLE_ADMIN')"
content="doc.heading"></h4>
使用Javascript:
mod
.directive(
'editable',
function() {
return {
restrict : 'A',
template : '<button class="btn pull-right"><i class="icon-pencil"></i></button>{{content}} ({{editable()}})',
scope : {
'content' : '=',
'editable' : '&'
},
link : function(scope, element, attrs) {
scope.$watch('editable', function(newValue) {
element.attr('contenteditable', newValue());
});
}
};
});
答案 0 :(得分:10)
尝试将手表放在'editable()'
而不是'editable'
说明:需要这样做的原因是因为'&'
指向动态生成的属性表达式的函数包装器而不是表达式本身。这个特殊的包装函数返回account.hasRole('ROLE_ADMIN')
。
答案 1 :(得分:8)
我也更喜欢这样做:
scope.$watch(function () {
return scope.editable();
}, function (val) {
// ...
});