我有一个名为 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.
}
};
});