AngularJS - 从另一个指令访问模型

时间:2014-05-09 13:01:51

标签: angularjs inheritance scope angular-ngmodel

Here's a plnkr

如何从headerInput指令中访问sideMenuContent模型?假设我在ng-models指令中有10个其他sideMenuHeader我希望在sideMenuContent中访问,是否有任何方法可以轻松扩展?

1 个答案:

答案 0 :(得分:1)

您需要对对象使用点表示法。见Understanding Scopes in AngularJs

因此,使用类似headerInput的内容而不是menu.headerInput,并确保在控制器中初始化menu对象,如$scope.menu = {};(或者您也可以设置默认值)值)。

I updated your plunkr to show you how it works