我正在尝试将 jqLite 函数 element.html 直接作为观察者的侦听器传递:
angular.module('testApp', []).directive('test', function () {
return {
restrict: 'A',
link: function (scope, element, attrs) {
scope.$watch('someVariable', element.html); // <-- Passing the function handle as listener
}
};
});
但是由于某种原因这不起作用,因此作为一种解决方法,我将侦听器包装在一个函数中:
angular.module('testApp', []).directive('test', function () {
return {
restrict: 'A',
link: function (scope, element, attrs) {
scope.$watch('someVariable', function (newValue) {
element.html(newValue);
});
}
};
});
第二个例子有效。
我不明白为什么第一个例子被打破了。有任何想法吗?
编辑: 我忘了提,浏览器没有给我任何错误。它只是向我展示了一个空元素。