当指令的属性发生更改时,如何在指令控制器内触发函数

时间:2016-09-12 15:26:42

标签: angularjs controller angular-directive

我试图在指令控制器中调用一个函数,只要指向属性的值改变了如何进行预先感谢

1 个答案:

答案 0 :(得分:0)

在控制器中你有$ attrs:)

$attrs.$observe("myAttr", function(newValue){
  console.log("the attribute my-attr changed to: ", newValue);
})