我正在尝试使用 AngularJS 制作一些自定义元素并将一些事件绑定到它,然后我注意到 $scope.var 在绑定函数中使用时不会更新 UI。
这是一个描述问题的简化示例:
HTML:
<!doctype html>
<html ng-app="test">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div ng-controller="Ctrl2">
<span>{{result}}</span>
<br />
<button ng-click="a()">A</button>
<button my-button>B</button>
</div>
</body>
</html>
JS:
function Ctrl2($scope) {
$scope.result = 'Click Button to change this string';
$scope.a = function (e) {
$scope.result = 'A';
}
$scope.b = function (e) {
$scope.result = 'B';
}
}
var mod = angular.module('test', []);
mod.directive('myButton', function () {
return function (scope, element, attrs) {
//change scope.result from here works
//But not in bind functions
//scope.result = 'B';
element.bind('click', scope.b);
}
});
演示:http ://plnkr.co/edit/g3S56xez6Q90mjbFogkL?p=preview
基本上,我将click
事件绑定到my-button
并希望$scope.result
在用户单击按钮 B 时进行更改(类似于ng-click:a()
按钮 A)。$scope.result
但是如果我这样做,视图不会更新到新的。
我做错什么了?谢谢。