本文執行個體講述了AngularJS全域scope與Isolate scope通訊用法。分享給大家供大家參考,具體如下:
在項目開發時,全域scope 和 directive本地scope使用範圍不夠清晰,全域scope與directive本地scope通訊掌握的不夠透徹,這裡對全域scope 和 directive本地scope的使用做一個總結。
一、scope範圍
1、AngularJS中,子範圍一般都會通過JavaScript原型繼承機制繼承其父範圍的屬性和方法。但有一個例外:在directive中使用scope: { ... },這種方式建立的範圍是一個獨立的"Isolate"範圍,它也有父範圍,但父範圍不在其原型鏈上,不會對父範圍進行原型繼承。這種方式定義範圍通常用於構造可複用的directive組件.
2、如果我們在子範圍中訪問一個父範圍中定義的屬性,JavaScript首先在子範圍中尋找該屬性,沒找到再從原型鏈上的父範圍中尋找,如果還沒找到會再往上一級原型鏈的父範圍尋找。在AngularJS中,範圍原型鏈的頂端是$rootScope,JavaScript尋找到$rootScope為止.
3、scope: { ... } - directive建立一個獨立的“Isolate”範圍,沒有原型繼承。這是建立可複用directive組件的最佳選擇。因為它不會直接存取/修改父範圍的屬性,不會產生意外的副作用。
二、Isolate scope 引用修飾符
1、 = or =attr “Isolate”範圍的屬性與父範圍的屬性進行雙向繫結,任何一方的修改均影響到對方,這是最常用的方式;
2、 @ or @attr “Isolate”範圍的屬性與父範圍的屬性進行單向綁定,即“Isolate”範圍只能讀取父範圍的值,並且該值永遠的String類型;
3、 & or &attr “Isolate”範圍把父範圍的屬性包裝成一個函數,從而以函數的方式讀寫父範圍的屬性,封裝方法是$parse
三、directive 與 controller 資料傳遞和通訊
1、父controller監聽全域scope(父scope)變數, 並廣播事件給子scope(directive scope,每個directvie都有自己獨立的scope範圍)
2、directive 定義本地scope,通過=、@、&(方法)字元顯示引用全域scope
3、directive scope(子scope)通過parent[$scope.$parent.xxx]引用全域scope的屬性
4、directive監聽全域scope變數變化,可以通過$scope.$parent.$watch方法
四、執行個體說明
<div ng-controller="MyCtrl"> <button ng-click="show=true">show</button> <dialog title="Hello }" visible="}" on-cancel="show=false;" on-ok="show=false;parentScope();"> <!--上面的on-cancel、on-ok,是在directive的isoloate scope中通過&引用的。 如果運算式中包含函數,那麼需要將函數綁定在parent scope(當前是MyCtrl的scope)中--> Body goes here: username:} , title:}. <ul> <!--這裡還可以這麼玩~names是parent scope的--> <li ng-repeat="name in names">}</li> </ul> <div> Email:<input type="text" ng-model="email" style="width: 200px;height:20px"/> </div> <div> Count:<input type="text" ng-model="person.Count" style="width: 120px;height:20px"/> <button ng-click="changeCount()">Count加1</button> </div> <p></p> </dialog></div>
Controller 測試代碼:
var app = angular.module("Dialog", []);app.controller("MyCtrl", function ($scope) { $scope.person = { Count: 0 }; $scope.email = 'carl@126.com'; $scope.names = ["name1", "name2", "name3"]; $scope.show = false; $scope.username = "carl"; $scope.title = "parent title"; $scope.parentScope = function () { alert("scope裡面通過&定義的東東,是在父scope中定義"); }; $scope.changeCount = function () { $scope.person.Count = $scope.person.Count + 1; } // 監聽controller count變更, 並發出事件廣播,再directive 中 監聽count CountStatusChange變更事件 $scope.$watch('person.Count', function (newVal, oldVal) { console.log('>>>parent Count change:' + $scope.person.Count); if (newVal != oldVal) { console.log('>>>parent $broadcast count change'); $scope.$broadcast('CountStatusChange', {"val": newVal}) } });});app.directive('dialog', function factory() { return { priority: 100, template: ['<div ng-show="visible">', ' <h3>}</h3>', ' <div class="body" ng-transclude></div>', ' <div class="footer">', ' <button ng-click="onOk()">OK</button>', ' <button ng-click="onCancel()">Close</button>', ' </div>', '</div>'].join(""), replace: false, transclude: true, restrict: 'E', scope: { title: "@",//引用dialog標籤title屬性的值 visible: "@",//引用dialog標籤visible屬性的值 onOk: "&",//以wrapper function形式引用dialog標籤的on-ok屬性的內容 onCancel: "&"//以wrapper function形式引用dialog標籤的on-cancel屬性的內容 }, controller: ['$scope', '$attrs', function ($scope, $attrs) { // directive scope title 通過@ 引用dialog標籤title屬性的值,所以這裡能取到值 console.log('>>>title:' + $scope.title); >>>title:Hello carl scope.html:85 // 通過$parent直接擷取父scope變數頁可以 console.log('>>>parent username:' + $scope.$parent.username); >>>parent username:carl // directive scope 沒有定義username 變數,並且沒有引用父scope username變數, 所以這裡是undefined console.log('>>>child username:' + $scope.username); >>>username:undefined // 接收由父controller廣播count變更事件 $scope.$on('CountStatusChange', function (event, args) { console.log("child scope on(監聽) recieve count Change event :" + args.val); }); // watch 父 controller scope對象 $scope.$parent.$watch('person.Count', function (newVal, oldVal) { console.log('>>>>>>>child watch parent scope[Count]:' + oldVal + ' newVal:' + newVal); }); }] };});
希望本文所述對大家AngularJS程式設計有所協助。