我有post
模型,在帖子路线中我使用以下方式获取数据:
this.store.filter('post', this.params(), function(post) { /* some code */ });
现在我有第二条路线,对于搜索引擎,我可以这样连接:
var uri = 'api/v1/search/';
vat that = this;
return Ember.$.getJSON(uri).then(function(response) {
store.pushPayload('post', response);
return that.store.filter('post', that.params(), function(post) {
// some code
});
}
但是因为我有分页并且我的模型是动态更新的,所以我想避免使用Ember.$.getJSON
并为商店指定不同的URL('api/v1/search/'
)。可能吗?我怎么能这样做?