angularjs 里的 controller 能嵌套吗?
如:
<p ng-controller="ACtrl">
<p ng-controller="BCtrl">
<p>{{ value }}</p>
</p>
</p>
在 BCtrl 中修改 $scope.value 的值,然后在 ACtrl 中使用貌似会报错 inprog。
PHP中文网2017-05-15 16:51:57
可以嵌套,不过使用上应该是需要用$parent
变量的。
http://fdietz.github.io/recipes-with-angular-js/controllers/sharing-models-between-nested-controllers.html
阿神2017-05-15 16:51:57
http://stackoverflow.com/questions/21287794/angularjs-controller-as-syntax-clarification
黄舟2017-05-15 16:51:57
可以嵌套,用"controller as ctrl"的语法比较好。想问题中那样子的写法,就根本不知道value来自ACtrl还是BCtrl
<p ng-controller="ACtrl as a">
<p ng-controller="BCtrl as b">
<p>{{ b.value }}</p>
</p>
</p>