淺談angularJS 範圍

來源:互聯網
上載者:User

  這篇文章主要介紹了淺談angularJS 範圍的相關資料,需要的朋友可以參考下

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 <!doctype html> <html ng-app="firstApp"> <head> <meta charset="utf-8"> <script src="angular-1.3.0.js"></script> </head> <body>   <div ng-controller="parentCtrl"> <input ng-model="args"> <div ng-controller="childCtrl"> <input ng-model="args"> </div> </div> <script> var app=angular.module('firstApp',[]); app.controller('parentCtrl',function($scope) { $scope.args = '123'; }).controller('childCtrl', function($scope) {   }); </script>

  案例說明:

  雖然在 childCtrl 中沒有定義具體的 args 屬性,但是因為 childCtrl 的範圍繼承自 parentCtrl 的範圍,

  因此,childCtrl通過原型鏈 到父範圍args 屬性並設定到input中。且在父input中輸入值自己動同步到子input中

  但是反之不行。即子中修改,無法改變父中的值,且導致父修改後子也不同步了,原因:在子範圍input輸入內容時,

  因為 HTML 程式碼中 model 明確綁定在 childCtrl 的範圍中,因此 AngularJS 會為 childCtrl 產生一個 args 原始類型屬性。

  根據 AngularJS 範圍繼承原型機制,childCtrl 在自己的範圍找到args屬性值,故就不從父中尋找args值。

  導致最終子範圍有args,父範圍有args,子和父之間的值不會再保持同步。

  以上所述就是本文的全部內容了,希望大家能夠喜歡。

 

相關文章

聯繫我們

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