2

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

<input my-directive="mydvalue"/>

我如何在指令中获取“mydvalue”?

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

      }

  };

});
4

1 回答 1

1

只是attrs.myDirective

在 attrs 中,您拥有元素的所有属性和一个很棒的 ngModel :) !

于 2013-09-25T07:57:45.710 回答