有的時候我們需要為非input類型的元素添加ng-model來實現雙向的資料綁定,從而減少冗餘程式碼,那麼可以嘗試一下的方式
例如:我頁面中使用了contenteditable這個屬性來實作使用者可直接編譯的div元素
html:
<style> .text{ margin:0 auto; width:100px; height:50px; border:1px solid red; } </style> </head> <body> <div ng-controller="selectController"> <div ng-repeat="pop in citylist"> <div class="text" contenteditable="true" ng-model="pop.pop"></div> </div> <button ng-click="cs()">输出新数据</button> </div> </body>
但是直接綁定ng-model是肯定得不到資料的,這時就需要為其增加自訂的屬性,如下所示。
js:
<script> var app = angular.module('app', []); app.controller('selectController', function ($scope) { $scope.citylist=[{id:1,pop:"北京"},{id:1,pop:"上海"},{id:1,pop:"广州"}]; $scope.p={}; $scope.cs=function(){ console.log($scope.citylist); } }).directive('contenteditable', function() {//自定义ngModel的属性可以用在div等其他元素中 return { restrict: 'A', // 作为属性使用 require: '?ngModel', // 此指令所代替的函数 link: function(scope, element, attrs, ngModel) { if (!ngModel) { return; } // do nothing if no ng-model // Specify how UI should be updated ngModel.$render = function() { element.html(ngModel.$viewValue || ''); }; // Listen for change events to enable binding element.on('blur keyup change', function() { scope.$apply(readViewText); }); // No need to initialize, AngularJS will initialize the text based on ng-model attribute // Write data to the model function readViewText() { var html = element.html(); // When we clear the content editable the browser leaves a <br> behind // If strip-br attribute is provided then we strip this out if (attrs.stripBr && html === '<br>') { html = ''; } ngModel.$setViewValue(html); } } }; }) </script>
其中參數類別如下:
部分參數解釋
restrict:
(字串)可選參數,指明指令在DOM裡面以什麼形式被宣告;
取值有:E(元素),A(屬性),C(類別),M(註解),其中預設值為A;
E(元素):
A(屬性):
2.require
字串代表另一個指令的名字,它將會作為link函數的第四個參數
具體用法我們可以舉例說明
假設現在我們要寫兩個指令,兩個指令中的link連結函數中(link函數後面會講)存在著有很多重合的方法,
這時候我們就可以將這些重複的方法寫在第三個指令的controller中(上面也講到controller常用來提供指令間的複用行為)
然後在這兩個指令中,require這個擁有controller字段的的指令(第三個指令),
最後透過link連結函數的第四個參數就可以引用這些重合的方法了。
<!doctype html> <html ng-app="myApp"> <head> <script src="http://cdn.staticfile.org/angular.js/1.2.10/angular.min.js"></script> </head> <body> <outer-directive> <inner-directive></inner-directive> <inner-directive2></inner-directive2> </outer-directive> <script> var app = angular.module('myApp', []); app.directive('outerDirective', function() { return { scope: {}, restrict: 'AE', controller: function($scope) { this.say = function(someDirective) { console.log('Got:' + someDirective.message); }; } }; }); app.directive('innerDirective', function() { return { scope: {}, restrict: 'AE', require: '^outerDirective', link: function(scope, elem, attrs, controllerInstance) { scope.message = "Hi,leifeng"; controllerInstance.say(scope); } }; }); app.directive('innerDirective2', function() { return { scope: {}, restrict: 'AE', require: '^outerDirective', link: function(scope, elem, attrs, controllerInstance) { scope.message = "Hi,shushu"; controllerInstance.say(scope); } }; }); </script> </body> </html>
上面例子中的指令innerDirective和指令innerDirective2復用了定義在指令outerDirective的controller中的方法
也進一步說明了,指令中的controller是用來讓不同指令間通訊用的。
另外我們可以在require的參數值加上下面的某個前綴,這會改變查找控制器的行為:
(1)沒有前綴,指令會在自身提供的控制器中進行查找,如果找不到任何控制器,則會拋出一個error
(2)?如果在目前的指令沒有找到所需的控制器,則會將null傳給link連接函數的第四個參數
(3)^如果在目前的指令沒有找到所需的控制器,則會尋找父元素的控制器
(4)?^組合