2

我的 JsonStore 是这样定义的:

var data_json = new Ext.data.JsonStore({
    url: '/Game/json_index',
    autoLoad: true,
    id: 'data_json',
    idProperty: 'id',
    fields: [ {name: 'id', type: 'int'}, 'name', {name:'add_date', type:'date', dateFormat: 'M$'}, 'price', 'kind', 'metacritic'],
    listeners: { 'load': function(storename, records, options){
    console.dir(this);
    }},
    writer: new Ext.data.JsonWriter()
})

它接收的 JSON 的 DUMP 类似于:

[
{"id":1,"name":"Guild Wars 2","add_date":"\/Date(1346104800000)\/","price":24.99,"kind":"MMO","metacritic":93},
{"id":2,"name":"Dark Souls: Prepare to Die Edition","add_date":"\/Date(1345759200000)\/","price":45.00,"kind":"actionrpg","metacritic":87},
{"id":3,"name":"Orcs Must Die! 2","add_date":"\/Date(1343599200000)\/","price":15.00,"kind":"action","metacritic":83}
]

JSON 被正确解码,商店里满是我的记录,但要小心.. 可怕的事情发生了!

可怕的东西截图

所有记录都被标记为 phantom = true,这不允许我正确使用 ExtJS 3.4.x store.save() 功能

我已经在谷歌上彻底搜索了这个问题,并且(我认为)它与 JsonReader 没有将记录 id 与我正在传递的“id”字段相关联。我什至指定了 idProperty: 'id'。

这方面的帮助?我越来越绝望,阅读关于记录创建的 extjs 源代码是纯粹的痛苦

4

1 回答 1

5

尝试删除:

id: 'data_json'

从你的商店。JsonStore 的所有配置选项都传递到自动创建的 JsonReader 中,这似乎是搞砸了。

于 2012-09-20T13:29:48.013 回答