如何在Ember中使用两个不同的适配器获得相同的型号

时间:2015-01-19 17:29:45

标签: javascript ember.js model ember-data adapter

我有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/')。可能吗?我怎么能这样做?

0 个答案:

没有答案