组件获取别的组件暴露的方法 获取不到方法
app.directive("strength",function(){ return{ require: "^superman", link:function(scope,ele,attrs,supermanCtrl){ supermanCtrl.addStrength(); } } }) 这个获取不到父组件的方法 为什么呢? 报错:TypeError: superman.addStrength is not a function
app.directive("strength",function(){ return{ require: "^superman", link:function(scope,ele,attrs,supermanCtrl){ supermanCtrl.addStrength(); } } }) 这个获取不到父组件的方法 为什么呢? 报错:TypeError: superman.addStrength is not a function
2017-02-17
举报