Unbinding $watch() Listeners In AngularJS

原文: https://www.bennadel.com/blog/2480-unbinding-watch-listeners-in-angularjs.htm

-----------------------------------------------------------------------------

Unbinding $watch() Listeners In AngularJS

By  Ben Nadel on June 5, 2013

In AngularJS, you can watch for changes in your view-model by binding a listener to a particular statement (or function) using the $scope's $watch() method. You tell the $watch() method what to examine and AngularJS will invoke your listener whenever the item-under-scrutiny changes. In the vast majority of cases, the $watch() statement can be run with a set-and-forget mentality. But, in rare cases, you may only want to $watch() for a single change; or, only watch for changes up to a certain point. If that's the case, you can unbind a $watch() listener using the provided "deregistration" function.

     
   
   

When you invoke the $watch() method, to create a binding, AngularJS returns a "deregistration" function. This function can then be used to unbind your $watch() listener - all you have to do is invoke this returned function and your $watch() listener will be removed.

To see this in action, take a look at the following code. In this demo, we're watching the number of clicks that a link receives. And, if that number gets above 5, we're going to show a message; however, once the message is shown, we remove the listener as it will no longer have any value.

 <!doctype html>
 <html ng-app="Demo" ng-controller="AppController">
 <head>
 <meta charset="utf-8" />
  
 <title>
 Unbinding $watch() Listeners In AngularJS
 </title>
 </head>
 <body>
  
 <h1>
 Unbinding $watch() Listeners In AngularJS
 </h1>
  
 <p>
 <a ng-click="incrementCount()">Click it, click it real good!</a>
 &raquo;
 {{ clickCount }}
 </p>
  
 <p ng-show="isShowingFeedback">
 <em>Heck yeah, now that's how you click a link!!</a>
 </p>
  
  
  
 <!-- Load jQuery and AngularJS from the CDN. -->
 <script
 type="text/javascript"
 src="//code.jquery.com/jquery-2.0.0.min.js">
  </script>
 <script
 type="text/javascript"
 src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js">
  </script>
 <script type="text/javascript">
  
  
  // Create an application module for our demo.
  var app = angular.module( "Demo", [] );
  
  
  // -------------------------------------------------- //
  // -------------------------------------------------- //
  
  
  // Define the root-level controller for the application.
  app.controller(
  "AppController",
  function( $scope ) {
  
  // I keep track of how many times the user has clicked
  // the link.
  $scope.clickCount = 0;
  
  // I determine if the "encouraging" feedback is shown.
  $scope.isShowingFeedback = false;
  
  
  // ---
  // WATCHERS.
  // ---
  
  
  // When you call the $watch() method, AngularJS
  // returns an unbind function that will kill the
  // $watch() listener when its called.
  var unbindWatcher = $scope.$watch(
  "clickCount",
  function( newClickCount ) {
  
  console.log( "Watching click count." );
  
  if ( newClickCount >= 5 ) {
  
  $scope.isShowingFeedback = true;
  
  // Once the feedback has been displayed,
  // there's no more need to watch the change
  // in the model value.
  unbindWatcher();
  
  }
  
  }
  );
  
  
  // ---
  // PUBLIC METHODS.
  // ---
  
  
  // I increment the click count.
  $scope.incrementCount = function() {
  
  $scope.clickCount++;
  
  // NOTE: You could just as easily have called a
  // counter-related method right here to test when
  // to show feedback. I am just demonstrating an
  // alternate approach.
  
  };
  
  }
  );
  
  
  </script>
  
 </body>
 </html>
view raw unbind-watch.htm hosted with ❤ by  GitHub

As you can see, we're storing the function reference returned by the $watch() statement; then, once the $watch() fires a few times, we invoke that stored method, unbinding the $watch() listener. If you watch the video, you can see that the console.log() statements stop as soon as the "deregistration" function is called.

Most of the time, you won't need to use this. In fact, I only found out about this feature yesterday when I ran into a situation in which I needed to unbind the $watch() listener. That said, it turns out it's rather easy, as long as you know it's there.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值