$watch、$watchGroup、$watchCollection三者怎么在Angular中使用?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務,包含不限于成都網(wǎng)站建設、網(wǎng)站制作、漢壽網(wǎng)絡推廣、小程序定制開發(fā)、漢壽網(wǎng)絡營銷、漢壽企業(yè)策劃、漢壽品牌公關、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務,您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)為所有大學生創(chuàng)業(yè)者提供漢壽建站搭建服務,24小時服務熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com
? 1,原型:$watch: function(watchExp, listener, objectEquality, prettyPrintExpression){};
? 2,參數(shù):watchExp(必須):{(function()|string)},可以字符串表達式,也可以帶當前scope為參數(shù)的函數(shù)
? - `string`: Evaluated as {@link guide/expression expression}
? - `function(scope)`: called with current `scope` as a parameter.
? 3,參數(shù):listener(必須):function(newVal, oldVal, scope),觀察的表達式變化的時候調(diào)用的函數(shù)。
? 4,參數(shù):objectEquality(非必須):是否監(jiān)視個對象,默認為false
? 5,$scope.$digest().會執(zhí)行所有的同$scope下的$watch。
? 但會出錯$apply already in progress,換了$rootScope也一樣。
? 原因-參考大牛博客:http://blog.csdn.net/aitangyong/article/details/48972643
? $digest、$apply、$$phase這些屬性或者方法其實都是$scope中的私有的,最好不要使用。
? 6,$watch一個對象。
? 如果要監(jiān)視對象的變化(地址改變),$watch對象名,第三個參數(shù)默認;
? 如果監(jiān)測對象中某一屬性,可以寫user.name的形式,第三個參數(shù)默認;
? 如果監(jiān)測對象中全部屬性,$watch對象名,第三個參數(shù)true;
? 7,$watchGroup,第一個參數(shù)是一個表達式的數(shù)組或者返回表達式的數(shù)組的函數(shù)。
? 8,$watchCollection;
? js中數(shù)組也是對象,但按照$watch一個對象的方式,只有數(shù)組引用變了才能監(jiān)聽變化,增加刪除$watch監(jiān)聽不到,所以就有了$watchCollection。
? function(obj, listener):第一個參數(shù)必須對象或者返回對象的函數(shù)。
?9,注銷$watch
? $watch函數(shù)返回一個注銷監(jiān)聽的函數(shù),太多的$watch將會導致性能問題,$watch如果不再使用,我們最好將其釋放掉。
一、使用方法
html
$watch
$watchGroup
$watchCollection
js
angular.module('nickApp', []) .controller("ctrl", ["$scope", "$timeout", function ($scope, $timeout) { // $watch var watcher = $scope.$watch("value1", function (newVal, oldVal) { $scope.w1 = "$watch--" + "new:" + newVal + ";" + "old:" + oldVal; if (newVal == 'clear') {//設置一個注銷監(jiān)聽的條件 watcher(); //注銷監(jiān)聽 } }); // $watchGroup $scope.$watchGroup(["value2", "value3"], function (newVal, oldVal) { //注意:newVal與oldVal都返回的是一個數(shù)組 $scope.w2 = "$watchGroup--" + "new:" + newVal + ";" + "old:" + oldVal; }); // $watchCollection $scope.arr = ['nick', 'ljy', 'ljj', 'zhw']; $scope.$watchCollection('arr', function (newVal, oldVal) { $scope.w3 = "$watchCollection--" + "new:" + newVal + ";" + "old:" + oldVal; }); $timeout(function () { $scope.arr = ['my', 'name', 'is', 'nick']; }, 2000); }])
二、小案例
html
小案例
單價:
js
// 小案例 .factory('watchService', [function () { var items = { goodsArr: [{ goods: 'goods1', price: 10, num: '' }, { goods: 'goods2', price: 20, num: '' }], sum: 0 }; return { getItemsSave: function () { return items; } }; }]) .controller('bodyCtl', ['$scope', 'watchService', function ($scope, watchService) { $scope.items = watchService.getItemsSave(); // 這里要監(jiān)聽數(shù)量變化計算綜合 //一 只監(jiān)聽所有num變化計算總額 var watchArr = []; $scope.items.goodsArr.forEach(function (v, i) { watchArr.push("items.goodsArr[" + i + "]['num']"); }); $scope.$watchGroup(watchArr, function (newVal, oldVal) { //注意:newVal與oldVal都返回的是一個數(shù)組 $scope.items.sum = 0; $scope.items.goodsArr.forEach(function (v, i) { $scope.items.sum += v.price * (v.num > 0 ? v.num : 0); }); }); /* //二 這樣寫則監(jiān)聽items.goodsArr所有成員 $scope.$watch('items.goodsArr', function () { $scope.items.sum = 0; $scope.items.goodsArr.forEach(function (v, i) { $scope.items.sum += v.price * (v.num > 0 ? v.num : 0); }); }, true);*/ }])
全部代碼
angular之$watch、$watchGroup、$watchCollection $watch
$watchGroup
$watchCollection
小案例
單價:
個總計: 元
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。