28

我知道你可以像这样取消绑定 $watch :

var listener = $scope.$watch("tag", function () {});
// ...
listener(); // would clear the watch

但是您可以在手表函数声明中取消绑定手表吗?那么在手表执行一次之后,它会自行解除绑定吗?就像是:

$scope.$watch("tag", function () {
    unbindme()
});
4

5 回答 5

58

你可以像你已经做的那样做,在你的函数中调用“注销”:

var unbind = $scope.$watch("tag", function () {
    // ...
    unbind();
});
于 2013-10-16T02:34:41.140 回答
9

因为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>

于 2016-06-22T07:56:05.580 回答
1

bindonce 指令可能是您需要的。

https://github.com/Pasvaz/bindence

于 2013-10-16T06:32:39.987 回答
0

就像一个类似的问题一样,对@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
});

而且根本不用担心解绑。

于 2018-09-19T06:50:45.267 回答
0
var unbindMe=$scope.$watch('tag',function(newValue){
    if(newValue){
       unbindMe()
    }
})
于 2016-06-22T08:03:17.943 回答