要实现查询功能,您必须在适配器中实现该findQuery
方法。此方法需要 4 个参数store, type, query, modelArray
。当服务器返回查询的数据时,您必须调用 上的load
方法modelArray
来用查询结果填充它。此方法还将数据加载到存储中,请参见此处的示例:http: //jsfiddle.net/pangratz666/5HMGd/。
App.store = DS.Store.create({
revision: 4,
adapter: DS.Adapter.create({
find: Ember.K,
findQuery: function(store, type, query, modelArray) {
// expect server to return this array
modelArray.load([{ id: 1, name: 'John'}, { id: 2, name: 'Jack'}]);
}
})
});
App.MyModel = DS.Model.extend({
name: DS.attr('string'),
didLoad: function() {
console.log('model loaded', this.toJSON());
}
});
// invoke query which loads the 2 models, and didLoad is called
App.store.find(App.MyModel, {});
</p>