91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

$watch、$watchGroup、$watchCollection三者怎么在Angular中使用

發布時間:2021-01-25 17:19:47 來源:億速云 閱讀:224 作者:Leah 欄目:web開發

$watch、$watchGroup、$watchCollection三者怎么在Angular中使用?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

?  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">
    <h3>$watch</h3>
    <div>
      <input type="text" ng-model="value1"/>
    </div>
    <div ng-bind="w1"></div>
    <h3>$watchGroup</h3>
    <div>
      <input type="text" ng-model="value2"/>
      <input type="text" ng-model="value3"/>
    </div>
    <div ng-bind="w2"></div>
    <h3>$watchCollection</h3>
    <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

<h3>小案例</h3>
  <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">
    <h3>$watch</h3>
    <div>
      <input type="text" ng-model="value1"/>
    </div>
    <div ng-bind="w1"></div>
    <h3>$watchGroup</h3>
    <div>
      <input type="text" ng-model="value2"/>
      <input type="text" ng-model="value3"/>
    </div>
    <div ng-bind="w2"></div>
    <h3>$watchCollection</h3>
    <ul>
      <li ng-repeat="v in arr" ng-bind="v"></li>
    </ul>
    <div ng-bind="w3"></div>
  </div>
  <h3>小案例</h3>
  <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>

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

白城市| 慈利县| 长海县| 荔波县| 寿光市| 绥阳县| 芜湖市| 德惠市| 迁西县| 龙山县| 都安| 龙南县| 禹州市| 元阳县| 江山市| 锦屏县| 大荔县| 富蕴县| 大化| 阿克陶县| 吉林市| 高唐县| 潢川县| 乳山市| 桂东县| 卫辉市| 双城市| 邢台县| 思南县| 滕州市| 伊金霍洛旗| 霍林郭勒市| 达拉特旗| 陕西省| 安阳县| 五台县| 都兰县| 平利县| 兴化市| 灵台县| 鄂伦春自治旗|