我有一个名为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.
}
};
});
答案 0 :(得分:1)
只需attrs.myDirective
在attrs中你拥有元素的所有属性和一个非常棒的ngModel :)!