angular之$watch、$watchGroup、$watchCollection

来源:http://www.cnblogs.com/puyongsong/archive/2017/06/24/6803414.html
-Advertisement-
Play Games

1,原型:$watch: function(watchExp, listener, objectEquality, prettyPrintExpression){}; 2,參數:watchExp(必須):{(function()|string)},可以字元串表達式,也可以帶當前scope為參數的函數 ...


  •   1,原型:$watch: function(watchExp, listener, objectEquality, prettyPrintExpression){};
  •   2,參數:watchExp(必須):{(function()|string)},可以字元串表達式,也可以帶當前scope為參數的函數
  •     - `string`: Evaluated as {@link guide/expression expression}
  •     - `function(scope)`: called with current `scope` as a parameter.
  •  3,參數:listener(必須):function(newVal, oldVal, scope),觀察的表達式變化的時候調用的函數。
  •  4,參數:objectEquality(非必須):是否監視個對象,預設為false
  •  5,$scope.$digest().會執行所有的同$scope下的$watch。
  •      但會出錯$apply already in progress,換了$rootScope也一樣。
  •      原因-參考大牛博客:http://blog.csdn.net/aitangyong/article/details/48972643
  •      $digest、$apply、$$phase這些屬性或者方法其實都是$scope中的私有的,最好不要使用。
  •  6,$watch一個對象。
  •     如果要監視對象的變化(地址改變),$watch對象名,第三個參數預設;
  •     如果監測對象中某一屬性,可以寫user.name的形式,第三個參數預設;
  •      如果監測對象中全部屬性,$watch對象名,第三個參數true;
  •  7,$watchGroup,第一個參數是一個表達式的數組或者返回表達式的數組的函數。
  •  8,$watchCollection;
  •      js中數組也是對象,但按照$watch一個對象的方式,只有數組引用變了才能監聽變化,增加刪除$watch監聽不到,所以就有了$watchCollection。
  •      function(obj, listener):第一個參數必須對象或者返回對象的函數。
  • 9,註銷$watch
  •          $watch函數返回一個註銷監聽的函數,太多的$watch將會導致性能問題,$watch如果不再使用,我們最好將其釋放掉。

一、使用方法

html

  <div ng-controller="ctrl">
        <h2>$watch</h2>
        <div>
            <input type="text" ng-model="value1"/>
        </div>
        <div ng-bind="w1"></div>

        <h2>$watchGroup</h2>
        <div>
            <input type="text" ng-model="value2"/>
            <input type="text" ng-model="value3"/>
        </div>
        <div ng-bind="w2"></div>

        <h2>$watchCollection</h2>
        <ul>
            <li ng-repeat="v in arr" ng-bind="v"></li>
        </ul>
        <div ng-bind="w3"></div>
    </div>

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') {//設置一個註銷監聽的條件
                            watcher(); //註銷監聽
                        }
                    });

                    //  $watchGroup
                    $scope.$watchGroup(["value2", "value3"], function (newVal, oldVal) {
                        //註意:newVal與oldVal都返回的是一個數組
                        $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

<h2>小案例</h2>
    <ul>
        <li ng-repeat="item in items.goodsArr">
            <p ng-bind="item.goods"></p>
            <p>
                <span>單價:</span>
                <span ng-bind="item.price"></span>
            </p>
            <div>
                <input type="number" ng-model="item.num">
                <span></span>
            </div>
        </li>
    </ul>
    <div>
        <span>總計:</span>
        <span ng-bind="items.sum"></span>
        <span></span>
    </div>

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();

//                    這裡要監聽數量變化計算綜合
                    //一 只監聽所有num變化計算總額
                    var watchArr = [];
                    $scope.items.goodsArr.forEach(function (v, i) {
                        watchArr.push("items.goodsArr[" + i + "]['num']");
                    });
                    
                    $scope.$watchGroup(watchArr, function (newVal, oldVal) { //註意:newVal與oldVal都返回的是一個數組
                        $scope.items.sum = 0;
                        $scope.items.goodsArr.forEach(function (v, i) {
                            $scope.items.sum += v.price * (v.num > 0 ? v.num : 0);
                        });
                    });
/*
                    //二 這樣寫則監聽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);*/

                }])

 

全部代碼

 

<!DOCTYPE html>
<html ng-app="nickApp">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title>angular之$watch、$watchGroup、$watchCollection</title>
    <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
    <script>
        /*
         * 1,原型:$watch: function(watchExp, listener, objectEquality, prettyPrintExpression){};
         * 2,參數:watchExp(必須):{(function()|string)},可以字元串表達式,也可以帶當前scope為參數的函數
         *        - `string`: Evaluated as {@link guide/expression expression}
         *        - `function(scope)`: called with current `scope` as a parameter.
         * 3,參數:listener(必須):function(newVal, oldVal, scope),觀察的表達式變化的時候調用的函數。
         * 4,參數:objectEquality(非必須):是否監視個對象,預設為false
         * 5,$scope.$digest().會執行所有的同$scope下的$watch。
         *    但會出錯$apply already in progress,換了$rootScope也一樣。
         *    原因-參考大牛博客:http://blog.csdn.net/aitangyong/article/details/48972643
         *    $digest、$apply、$$phase這些屬性或者方法其實都是$scope中的私有的,最好不要使用。
         * 6,$watch一個對象。
         *    如果要監視對象的變化(地址改變),$watch對象名,第三個參數預設;
         *    如果監測對象中某一屬性,可以寫user.name的形式,第三個參數預設;
         *    如果監測對象中全部屬性,$watch對象名,第三個參數true;
         * 7,$watchGroup,第一個參數是一個表達式的數組或者返回表達式的數組的函數。
         * 8,$watchCollection;
         *     js中數組也是對象,但按照$watch一個對象的方式,只有數組引用變了才能監聽變化,增加刪除$watch監聽不到,所以就有了$watchCollection。
         *     function(obj, listener):第一個參數必須對象或者返回對象的函數。
         */
        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;
                        /*
                         *註銷$watch
                         *太多的$watch將會導致性能問題,$watch如果不再使用,我們最好將其釋放掉。
                         *$watch函數返回一個註銷監聽的函數,如果我們想監控一個屬性,然後在稍後註銷它,可以使用下麵的方式:
                         */
                        if (newVal == 'clear') {//設置一個註銷監聽的條件
                            watcher(); //註銷監聽
                        }
                    });

                    //  $watchGroup
                    $scope.$watchGroup(["value2", "value3"], function (newVal, oldVal) {
                        //註意:newVal與oldVal都返回的是一個數組
                        $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);

                }])

                //         小案例
                .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();

//                    這裡要監聽數量變化計算綜合
                    //一 只監聽所有num變化計算總額
                    var watchArr = [];
                    $scope.items.goodsArr.forEach(function (v, i) {
                        watchArr.push("items.goodsArr[" + i + "]['num']");
                    });

                    $scope.$watchGroup(watchArr, function (newVal, oldVal) { //註意:newVal與oldVal都返回的是一個數組
                        $scope.items.sum = 0;
                        $scope.items.goodsArr.forEach(function (v, i) {
                            $scope.items.sum += v.price * (v.num > 0 ? v.num : 0);
                        });
                    });
/*
                    //二 這樣寫則監聽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);*/

                }])

    </script>
</head>
<body ng-controller="bodyCtl">
<div ng-view>
    <div ng-controller="ctrl">
        <h2>$watch</h2>
        <div>
            <input type="text" ng-model="value1"/>
        </div>
        <div ng-bind="w1"></div>

        <h2>$watchGroup</h2>
        <div>
            <input type="text" ng-model="value2"/>
            <input type="text" ng-model="value3"/>
        </div>
        <div ng-bind="w2"></div>

        <h2>$watchCollection</h2>
        <ul>
            <li ng-repeat="v in arr" ng-bind="v"></li>
        </ul>
        <div ng-bind="w3"></div>
    </div>

    <h2>小案例</h2>
    <ul>
        <li ng-repeat="item in items.goodsArr">
            <p ng-bind="item.goods"></p>
            <p>
                <span>單價:</span>
                <span ng-bind="item.price"></span>
            </p>
            <div>
                <input type="number" ng-model="item.num">
                <span></span>
            </div>
        </li>
    </ul>
    <div>
        <span>總計:</span>
        <span ng-bind="items.sum"></span>
        <span></span>
    </div>
</div>
</body>
</html>
View Code

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 全球最大的軟體製造商微軟2月12日警告公眾稱其一部分珍貴的Windows NT和Windows 2000操作系統源代碼被泄漏到了一些線上文件共用網路中。 微軟稱被泄漏的代碼只是整個程式的一小部分,但這沒有阻止出於好奇心和懷有惡意的人設法將其納入囊中。考慮到2月13日在互聯網文件共用網路中交換的文件大 ...
  • 一個開發者,如何才能更值錢? 答案非常簡單:掌握稀缺資源。 那麼,怎樣才能持續不斷地掌握稀缺資源,讓自己更值錢呢? 請看接下來介紹的 2 種識別稀缺的方法和 2 種培養稀缺的策略。 稀缺資源的秘密 資源有很多,比如知識、技能、關係、社會資源、信息、天賦等等,哪種資源才是稀缺的呢? 答案可能不在資源本 ...
  • 頁面報錯: 後臺錯誤: Field error in object 'user' on field 'birthday': rejected value [2013-06-24]; codes [typeMismatch.user.birthday,typeMismatch.birthday,typ ...
  • 一、定義 ArrayList和LinkedList是兩個集合類,用於儲存一系列的對象引用(references)。 引用的格式分別為: 1 ArrayList<String> list = new ArrayList<String>(); 1 LinkedList<Integer> list = n ...
  • 很多項目都配置了日誌記錄的功能,但是,卻只有很少的項目組會經常去看日誌。原因就是日誌文件生成規則設置不合理,將嚴重的錯誤日誌跟普通的錯誤日誌混在一起,分析起來很麻煩。 其實,我們想要的一個日誌系統核心就這2個要求: 這樣的日誌系統最大的好處就是可以幫助我們一目瞭然的發現嚴重錯誤。結合管理員後臺直接訪 ...
  • 在開發 H5 應用的時候碰到一個問題,應用只需要一張小的縮略圖,而用戶用手機上傳的確是一張大圖,手機攝像機拍的圖片好幾 M,這可要浪費很多流量。 像我這麼為用戶著想的程式員,絕對不會讓這種事情發生的,於是就有了本文。 獲取圖片 通過 File API 獲取圖片。 預覽圖片 使用 createObje ...
  • 英文:Aurélien Hervé 譯文:眾成翻譯/msmailcode 這裡有一些 Javascript初學者應該知道的技巧和陷阱。如果你已經是專家了,順便溫習一下。 Javascript也只不過是一種編程語言。怎麼可能出錯嘛? 1. 你有沒有嘗試給一組數字排序? Javascript 的sort ...
  • 英文:Ben Northrop 譯文:開源中國 【導讀】:Ben Northrop 在 2016 年滿了 40 歲,本文是他對職業生涯的思考。他認為從長遠來看,應該多投資一些不容易過期、衰竭期較長的知識領域中。 我是一名程式員,幾個月前剛過完 40 歲生日。某個星期六的早晨,我參加了一個 React ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...