标签: ember.js
我在Ember有一个名为 Game 的模型。要访问我运行的所有游戏
this.store.query('game').
现在,我想要检索所有“即将到来的游戏”我应该怎么做呢?
谢谢!
答案 0 :(得分:1)
只需添加到游戏模型
isUpcoming: DS.attr('boolean')
以及在路线中查询时
this.store.query("game", {filter: {isUpcoming: true}});
无需过度复杂化。