AngularJS API之copy深拷貝詳解及執行個體_AngularJS

來源:互聯網
上載者:User

angular提供了一個可以複製對象的api——copy(source,destination),它會對source對象執行深拷貝。

使用時需要注意下面幾點:

  1. 如果只有一個參數(沒有指定拷貝的對象),則返回一個拷貝對象
  2. 如果指定了destination,則會深拷貝對象複製給destination
  3. 如果source是null或者undefined,那麼會直接返回source
  4. 如果source就是desitination,那麼會報錯。

下面看看使用範例:

<html><head>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script></head><body ng-app="copyExample">  <div ng-controller="ExampleController">    <form novalidate class="simple-form">      Name: <input type="text" ng-model="user.name" /><br />      E-mail: <input type="email" ng-model="user.email" /><br />      Gender:       <input type="radio" ng-model="user.gender" value="male" />      male      <input type="radio" ng-model="user.gender" value="female" />      female      <br />      <button ng-click="reset()">RESET</button>      <button ng-click="update(user)">SAVE</button>    </form>    <pre>form = {{user | json}}</pre>    <pre>master = {{master | json}}</pre>  </div>  <script>  angular.module('copyExample', [])  .controller('ExampleController', ['$scope', function($scope) {    $scope.master= {};        var test1;    console.log(angular.copy(test1));//undefined    var test3=null;    console.log(angular.copy(test2));//undefined    var test2 = "a";    // console.log(angular.copy(test2,test2));//error!!    $scope.update = function(user) {      // Example with 1 argument      $scope.master= angular.copy(user);    };    $scope.reset = function() {      // Example with 2 arguments      angular.copy($scope.master, $scope.user);      console.log($scope.master);      console.log($scope.user);    };    $scope.reset();  }]);  </script></body></html>

以上就是對AngularJS API之copy深拷貝的資料整理,後續繼續補充相關資料,謝謝大家對本站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.