我在 ember 中遇到了一个更大的项目的问题,当我处于与该模型的控制器无关的模板中时,我想从模型中获取信息。
我得到了这些模板:
<script type="text/x-handlebars" data-template-name="community">
{{model.name}}
{{outlet}}
</script>
//users is a subroute from community
<script type="text/x-handlebars" data-template-name="communityUsers">
//assume i want to display something from a community here like:
{{community.id}}
{{#each user in model}}
<li>{{user.name}}</li>
{{/each}}
</script>
在路线中,我获取了适当的模型,因此对于社区,我得到了 1 个社区,而在 communityUsers 中,我有一个包含用户的数组
有谁知道最好的解决方案?