我有一个小部件,我正在使用ng-repeat
. 初始创建工作正常,但之后它停止更新。以下是摘录index.html
:
<div>
<x-node ng-repeat="node in nodes"></x-node>
</div>
部分/node.html:
<div>{{node.name}}</div>
和指令:
angular.module('directive', []).directive('node', function() {
return {
restrict: 'E',
scope: true,
templateUrl: 'partials/node.html',
replace: true,
compile: function(tElement, tAttrs, transclude) {
return {
post: function(scope, iElement, iAttrs) {
scope.$on('$destroy', function(event) {
console.log('destroying');
});
}
};
}
};
});
如果我像这样修改控制台中的节点列表:
var e = angular.element($0);
var s = e.scope();
s.nodes.splice(1,1);
s.$apply()
...然后$destroy
回调运行,但呈现的元素不会改变。我的指令中有什么遗漏吗?
演示:Plunker