微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – ngrepeat中的Angularjs动态指令

看一下例子:
$scope.fields = [{
    name: 'Email',dir : "abc"
},{
    name: 'List',dir : "ddd"
}];

app.directive('abc',function () {});
app.directive('ddd',function () {});

<table class="table table-hover">
        <tr ng-repeat="p in fields">
          <input {{p.dir}} ngmodel="p" />
        </tr>
    </table>

我怎样才能编写代码,p.dir会动态转换为指令?

我的例子:hhttp://jsbin.com/vejib/1/edit

解决方法

试试这个指令:
app.directive('dynamicDirective',function($compile){
  return {
      restrict: 'A',replace: false,terminal: true,priority: 1000,link:function(scope,element,attrs){

        element.attr(scope.$eval(attrs.dynamicDirective),"");//add dynamic directive

        element.removeAttr("dynamic-directive"); //remove the attribute to avoid indefinite loop
        element.removeAttr("data-dynamic-directive");

        $compile(element)(scope);
      }
  };
});

用它:

<table class="table table-hover">
   <tr ng-repeat="p in people">
      <td dynamic-directive="p.dir" blah="p"></td>
   </tr>
</table>

DEMO

有关此指令如何工作的更多信息以及为什么我们必须添加terminal:true和priority:1000.请查看Add directives from directive in AngularJS

原文地址:https://www.jb51.cc/js/150677.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐