gpt4 book ai didi

json - 如何配置ExtJS 4 Store(代理和阅读器)以读取元数据

转载 作者:行者123 更新时间:2023-12-04 05:04:22 25 4
gpt4 key购买 nike

我的问题是如何获取除totalRecords之外的元数据,在我的情况下是版本,代码,searchquery(请查看json)。

{
"result": {
"version":"1",
"code":"200",
"searchquery": "false",
"totalRecords": "2",
"account":[
{
"lastname": "Ivanoff",
"firstname": "Ivan",
"accountId":"1"
},
{
"lastname": "Smirnoff",
"firstname": "Ivan",
"accountId":"2"
}
]
}

}

这是我的模型:
Ext.define("test.Account", {
extend: "Ext.data.Model",
fields: [
{name: 'accountId', type: 'string'},
{name: 'lastname', type: 'string'},
{name: 'firstname', type: 'string'}
]
});

并存储:
Ext.define("test.TestStore", {
extend: "Ext.data.Store",
model: "test.Account",
proxy: {
type: "ajax",
url: "users.json",
reader: {
type : 'json',
root : 'result.account',
totalProperty: "result.totalRecords"
}
},

listeners: {
load: function(store, records, success) {
console.log("Load: success " + success);
}
}
});

使用此存储,我能够加载记录(帐户),并且找不到任何方法来访问其余字段。

先感谢您。

最佳答案

这是我的问题的解决方案。我正在处理Proxy类中的afterRequest事件,可以在其中获取响应数据,对其进行解析并保存元数据。这是TestStore类的代理部分:

因此,这是TestStore类的代理部分:

proxy: {
type: "ajax",
url: "/users.json",
reader: {
type : 'json',
root : 'gip.account',
totalProperty: "gip.totalRecords",
searchquery: "searchquery"
},
afterRequest: function(req, res) {
console.log("Ahoy!", req.operation.response);
}
}

关于json - 如何配置ExtJS 4 Store(代理和阅读器)以读取元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11000819/

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