首頁 > web前端 > js教程 > 主體

angularjs自訂ng-model標籤的屬性_AngularJS

WBOY
發布: 2016-05-16 15:19:03
原創
1315 人瀏覽過

有的時候我們需要為非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: '&#63;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(屬性):


C(類別):  

M(註):<--directive:directiveName expression-->

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)?^組合

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!