我知道你可以像这样取消绑定 $watch :
var listener = $scope.$watch("tag", function () {});
// ...
listener(); // would clear the watch
但是您可以在手表函数声明中取消绑定手表吗?那么在手表执行一次之后,它会自行解除绑定吗?就像是:
$scope.$watch("tag", function () {
unbindme()
});
我知道你可以像这样取消绑定 $watch :
var listener = $scope.$watch("tag", function () {});
// ...
listener(); // would clear the watch
但是您可以在手表函数声明中取消绑定手表吗?那么在手表执行一次之后,它会自行解除绑定吗?就像是:
$scope.$watch("tag", function () {
unbindme()
});
你可以像你已经做的那样做,在你的函数中调用“注销”:
var unbind = $scope.$watch("tag", function () {
// ...
unbind();
});
因为tag
是一个表达式,一旦收到值,您可以使用一次性绑定来取消绑定:
$scope.$watch("::tag", function () {});
angular
.module('app', [])
.controller('example', function($scope, $interval) {
$scope.tag = undefined
$scope.$watch('::tag', function(tag) {
$scope.tagAsSeen = tag
})
$interval(function() {
$scope.tag = angular.isDefined($scope.tag) ? $scope.tag + 1 : 1
}, 1000)
})
angular.bootstrap(document, ['app'])
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body ng-controller="example">
Tag: {{tag}}
<br>
Watch once result: {{tagAsSeen}}
</body>
</html>
bindonce 指令可能是您需要的。
就像一个类似的问题一样,对@Kris 的回答稍加改进将使您在整个项目中获得更时尚和可重复使用的东西。
.run(function($rootScope) {
$rootScope.see = function(v, func) {
var unbind = this.$watch(v, function() {
unbind();
func.apply(this, arguments);
});
};
})
现在由于范围原型继承,您可以简单地去
$scope.see('tag', function() {
//your code
});
而且根本不用担心解绑。
var unbindMe=$scope.$watch('tag',function(newValue){
if(newValue){
unbindMe()
}
})