模型数据没有显示?

时间:2015-10-14 05:43:20

标签: model-view-controller ember.js ember-data ember-cli

我在我的控制器中有这种动作

action : {
    search: function(){
        this.store.find('vehicle')
    } 
}

现在当我尝试按下按钮时,数据成功返回商店。 但是当我试图循环时数据没有出现

{{#each foo as |bar|}} 
    {{bar.data}} 
{{/each}}

1 个答案:

答案 0 :(得分:0)

你错过了回归。

actions: {
    search(){
        return this.get('store').find('vehicle');
    } 
}