1

当您在 ember-data 中使用 findQuery 时,它是否还会加载模型 localy ?我无法使以下代码工作:

App.MyModel = DS.Model.extend {

   name: DS.attr('string')
   didLoad: ->
    console.log('model loaded')
}

现在当我做类似的事情时:

objects = App.store.find(App.MyModel, [{name: "john"},{name: "jack"}])

不会触发 didLoad 回调。何时触发此回调?

4

1 回答 1

1

要实现查询功能,您必须在适配器中实现该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>

于 2012-05-31T11:43:01.010 回答