我在我的ember App中创建了一个Object,并创建了一些它的实例。现在,我想检索该数据并将其显示在handlebar模板中。有没有办法做到这一点?
答案 0 :(得分:1)
我认为你的结构就是这个例子
App.MyObject = Ember.Object.extend({
// some attributes
anyAttribute: DS.attr()
});
App.MyRoute = App.Route.extend({
model: function(){
// return your object array
}
});
在你的模板中:
{{#each item in model}}
{{item.anyAttribute}}
{{/each}}