admin管理员组文章数量:1350800
In AngularJS is it possible to inherit the parent controller's scope from within an included partial instead of passing the data through an injected service?
Example case:
Let's say ParentCtrl
's scope looks like: { testData: 'testing stuff' }
<div ng-controller="ParentCtrl">
Here we're defined: {{testData}}
<div ng-include="'partial.html'"></div>
</div>
And inside partial.html
:
<em>Inherited: {{testData}}</em>
So the partial doesn't even need it's own controller for this. If this is impossible though and you can only pass injected data between controllers via a service why has Angular done things this way?
In AngularJS is it possible to inherit the parent controller's scope from within an included partial instead of passing the data through an injected service?
Example case:
Let's say ParentCtrl
's scope looks like: { testData: 'testing stuff' }
<div ng-controller="ParentCtrl">
Here we're defined: {{testData}}
<div ng-include="'partial.html'"></div>
</div>
And inside partial.html
:
<em>Inherited: {{testData}}</em>
So the partial doesn't even need it's own controller for this. If this is impossible though and you can only pass injected data between controllers via a service why has Angular done things this way?
Share Improve this question edited Feb 3, 2015 at 18:49 saricden asked Feb 3, 2015 at 17:25 saricdensaricden 2,3425 gold badges32 silver badges44 bronze badges2 Answers
Reset to default 7Yes, that's actually how it works by default. ng-include
always creates a new scope and:
A "child scope" (prototypically) inherits properties from its parent scope.
See the docs on Scope.
Here is an example plunker.
Edit: Also, I just noticed a syntax issue in your original question. The template should be surrounded in single quotes. Change <div ng-include="partial.html"></div>
to <div ng-include="'partial.html'"></div>
Playing around with the example Plunkr in the ngInclude documentation, I'm able to access the parent controller's scope from within the partial. For example, change the contents of template1.html
to:
Content of template1.html {{ template }}
Per the docs, ngInclude
creates a new scope, which means you'll need to observe the angular best practice of "having a dot in your scope" (accessing objects on the scope instead of primitive values), to avoid problems with broken references. You can check out this Stack Overflow question for more information.
本文标签: javascriptInherit outer controller39s scope from within nginclude without a serviceStack Overflow
版权声明:本文标题:javascript - Inherit outer controller's scope from within ng-include without a service? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743884697a2555843.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论