gpt4 book ai didi

javascript - findQuery() 在 ember-data 中不起作用?

转载 作者:搜寻专家 更新时间:2023-11-01 04:46:36 25 4
gpt4 key购买 nike

夹具包含联系人列表,每个联系人都有联系人类型。我正在尝试使用 .findQuery() 过滤联系人记录,但它抛出以下错误:

Uncaught TypeError: Object function () {.....} has no method 'findQuery' 

我在这里列出了我的代码:

Grid.Store = DS.Store.extend({
revision: 12,
adapter: 'DS.FixtureAdapter'
});

Grid.ModalModel = DS.Model.extend({
fname: DS.attr('string'),
lname: DS.attr('string'),
email: DS.attr('string'),
contactno: DS.attr('string'),
gendertype: DS.attr('boolean'),
contactype: DS.attr('number')
});

Grid.ModalModel.FIXTURES = [
{
id: 1,
fname: "sachin",
lname: "gh",
email: "gh",
contactno: "4542154",
gendertype: true,
contactype: 1
},
{
id: 2,
fname: "amit",
lname: "gh",
email: "gh",
contactno: "4542154",
gendertype: true,
contactype: 2
},
{
id: 3,
fname: "namit",
lname: "gh",
email: "gh",
contactno: "4542154",
gendertype: true,
contactype: 1
}
];

Controller 代码:

        totpersonalcontact:function(){ 
return Grid.ModalModel.findQuery({ contactype: 2 }).get('length');
}.property('@each.isLoaded'),
totfriendcontact:function(){
return Grid.ModalModel.findQuery({ contactype: 3 }).get('length');
}.property('@each.isLoaded')

我已将 .findQuery 更改为 .query,但每次它都显示长度为 0。

最佳答案

只需将 findQuery 更改为 query

在此之后,控制台中将出现一条错误消息:

Assertion failed: Not implemented: You must override the DS.FixtureAdapter::queryFixtures method to support querying the fixture store. 

就像消息解释一样,只需实现DS.FixtureAdapter#queryFixtures。传给queryFixtures的参数是:records, query, type。地点:

  • Records 是一组普通的 javascript 对象,您将对其进行过滤。
  • Query 是传递给 ember 数据类的 query 方法的对象。
  • Type 是 ember 数据类,调用查询的地方。

返回的是过滤后的数据。

例如,要执行一个简单的 where like:

App.Person.query({ firstName: 'Tom' })

只需重新打开您的 DS.FixtureAdapter 即可:

DS.FixtureAdapter.reopen({
queryFixtures: function(records, query, type) {
return records.filter(function(record) {
for(var key in query) {
if (!query.hasOwnProperty(key)) { continue; }
var value = query[key];
if (record[key] !== value) { return false; }
}
return true;
});
}
});

Here是现场演示。

关于javascript - findQuery() 在 ember-data 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18165399/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com