1
我有一個用於檢索模型列表的餘燼js路由器。返回第一個模型餘燼js模板
import Ember from 'ember';
export default Ember.Route.extend({
model() {
return this.get('store').findAll('article');
}
});
我想在我的模板中列表中的第一種模式,所以我嘗試:
{{ article-preview article=model.[0] }}
,但沒有工作,由物品預覽組件沒有收到文章模型。
我試過這看看問題是否在組件article-preview
,但工作。
{{#each model as |article|}}
{{ article-preview article=article}}
{{/each}}