我正在尝试创建一个GUI,以从一条路线更改许多不同模型的许多属性。
因此,我已经阅读了一些有关使用多个模型的信息[这里]。 1
给我以下内容:
model: function() {
return Ember.RSVP.hash({
students: this.store.find('student'),
objectives: this.store.find('objective')
});
}
我期望我可以使用以下模板代码显示记录等:
<h1>Objectives</h1>
{{#each objective in objectives}}
<p>{{objective.name}}</p>
{{/each}}
我应该如何访问/显示模板中的记录及其属性?谢谢
最佳答案
您需要指定想要模型上的目标:
<h1>Objectives</h1>
{{#each objective in model.objectives}}
<p>{{objective.name}}</p>
{{/each}}
关于ember.js - Ember -使用多种模型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28530676/