如何更新指令中的范围?
<div ng-controller="MyCtrl">
<p t></p>
</div>
我的指令:
var myModule = angular.module('myModule', [])
.directive('t', function () {
return {
template: '{{text}}',
link: function (scope, element, attrs) {
scope.text = '1';
element.click(function() {
scope.text = '2';
});
}
};
})
.controller('MyCtrl', ['$scope', function ($scope) {
}]);
点击指令后不更新。