欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

angularjs自定义ng-model标签的属性

程序员文章站 2022-11-24 08:14:45
有的时候我们需要为非input类型的元素添加ng-model来实现双向的数据绑定,从而减少冗余代码,那么可以尝试一下的方式 例如:我页面中使用了contenteditab...

有的时候我们需要为非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>

其中参数类别如下:

angularjs自定义ng-model标签的属性

部分参数解释

restrict:

(字符串)可选参数,指明指令在dom里面以什么形式被声明;

取值有:e(元素),a(属性),c(类),m(注释),其中默认值为a;

e(元素):<directivename></directivename>
a(属性):<div directivename='expression'></div>
c(类):   <div class='directivename'></div>
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)?^组合