AngularJs:如何获取属性类型指令的属性值

时间:2013-09-25 07:54:19

标签: angularjs angularjs-directive

我有一个名为my-directive的自定义指令,它具有属性类型(restrict:' A')。我用它如下:

<input my-directive="mydvalue"/>

我如何获得&#34; mydvalue&#34;在指令里面?

app.directive("myDirective", function (){
   return {
      restrict: 'A',
      link: function(scope, el, attrs, controller) {
         //How do i get the mydvalue here.

      }

  };

});

1 个答案:

答案 0 :(得分:1)

只需attrs.myDirective

在attrs中你拥有元素的所有属性和一个非常棒的ngModel :)!