Angularjs全域變數被範圍監聽的正確姿勢_AngularJS

來源:互聯網
上載者:User

如果你只想知道結論:

$scope.$watch($rootScope.xxx,function(newVal,oldVal){//do something})

馬上就有人問為什麼不是:

$rootScope.$watch("xxx",function(newVal,oldVal){//do something})

從我最近的一個bug來說說為什麼要用第一種方式。

邏輯如圖,一開始我使用了 $rootScope.$watch 的寫法。因為 angularjs 在 $rootScope 上的 watch 一旦註冊全域有效。而我的這個全域變數恰好是訂單資訊,也就是說不同的 controller 對他都是有改動的,每一次改動就會觸發 $rootScope.$watch 進入別的 controller。可以類比看一下 $rootScope 上的 $broadcast 會全域出發的。

其實這並不是唯一的方式,查一下angular 源碼不難找到 watch 方法源碼不分有如下代碼:

return function deregisterWatch() {if (arrayRemove(array, watcher) >= 0) {incrementWatchersCount(scope, -1);}lastDirtyWatch = null;};

這段代碼告訴我們,手動清理 watch 是可行的。例如:

var watcher = $rootScope.$watch("xxx",function(){});//手動清除 watcher watcher();

還是很簡單對吧,以上方法同樣可以用於 scope 上的 watch。

研究到這裡的時候,覺得有點問題,那我在 $scope 會被清理嗎?於是呼,繼續翻源碼,我在 $destroy 方法裡面找到如下代碼:

// Disable listeners, watchers and apply/digest methodsthis.$destroy = this.$digest = this.$apply = this.$evalAsync = this.$applyAsync = noop;this.$on = this.$watch = this.$watchGroup = function() { return noop; };this.$$listeners = {};

以上代碼是本文給大家介紹的Angularjs全域變數被範圍監聽的正確姿勢,希望大家有所協助,本文寫的不好還請各位大俠多多指教。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.