Ember数据 - 按ID查找并使用过滤器

时间:2013-03-05 10:03:43

标签: ember.js ember-data

有没有办法使用find方法来请求这样的网址?

http://awesomedomain.com/api/models/1/?foo=bar

现在,如果我使用Model.find({id: 1, foo: 'bar'}),它会自动使用findQuery,请求的网址为api/models/?id=1&foo=bar,这会在后端触发不同的方法。

另一种选择是在后端路由中解决这个问题,但我想知道是否可以在 Ember 内实现。

1 个答案:

答案 0 :(得分:1)

我同意你应该能够提供这样的东西:

Your.Model.find(1,{foo:"bar"})

现在,你唯一能做的就是:

Your.Model.find(1)

然后在您的RestAdapter中,手动覆盖ajax请求以添加哈希/查询参数:

Your.RESTAdapter = DS.RESTAdapter.extend({
  url: 'http://awesomedomain.com/api/models',
  ajax: function(url, type, hash) {
    hash.url = url;
    hash.type = type;
    hash.dataType = 'json';
    hash.contentType = 'application/json; charset=utf-8';
    hash.context = this;
    hash.data = {foo:"bar"};
    jQuery.ajax(hash);
  }
});