我有一个简单的指令
angular.module('myApp')
.directive('myDirective', function () {
return {
template: '<p ng-transclude></p>',
restrict: 'A',
transclude: true,
link: function postLink(scope, element, attrs) {
}
}
}
);
每次嵌入内容更改并呈现指令时,我都尝试运行代码 - 我需要嵌入的内容。
在这种情况下我想运行的示例算法是:
- 计算嵌入内容的字数。
我尝试scope.$watch
了多种形式,但无济于事。