从json store extjs获取记录

时间:2010-10-30 22:22:17

标签: javascript json extjs store

我加载了json商店,我需要从中获取一条记录。 我使用过:getAt(index)find()getById(),但没有结果。 这是我的代码:

var appSettingReader = new Ext.data.JsonReader({     
                root: 'results',
              },[
                {name: 'id', type: 'int', mapping: 'id'},
                {name: 'projetId', type: 'int', mapping: 'projetId'},
                {name: 'resLevels', type: 'int', mapping: 'resLevels'},
                {name: 'maxResToLock',  type: 'int', mapping: 'maxResToLock'},
                {name: 'maxTimeToLock', type: 'int', mapping: 'maxTimeToLock'},
                {name: 'infosToPrint', type: 'string', mapping: 'infosToPrint'}
              ])

var appSettingStore = new Ext.data.Store({
                proxy: new Ext.data.HttpProxy({
                        url: 'inc/getSettings.php',
                        method: 'POST'
                    }),
                baseParams:{task: "app"}, 
                reader : appSettingReader,
                sortInfo:{field: 'id', direction: "DESC"}
               })

appSettingStore.load(); 

此代码返回undefined:

console.log(appSettingStore.getAt(0));

console.log(appSettingStore.find("id","1")); 

这是从服务器返回的json字符串:

{success:true,"results":[{"id":"1","projetId":"1","resLevels":"1","maxResToLock":"40","maxTimeToLock":"10","infosToPrint":"1_2_3_5","hotlineMail":"admin@app.com"}]}

我也测试了这段代码:

var records = new Array()       
var test = appSettingStore.each(function(rec){
            records.push(rec)
         })
console.log(records)

我得到一个空数组!

PS:这个商店不受任何组件的约束; 我只想读写它。

2 个答案:

答案 0 :(得分:7)

您需要在商店上放置一个回调,它将在加载后触发。然后,您可以根据需要使用数据。

store.load({
    callback : function(r, options, success) {
        console.log(r.data)
    }
})

答案 1 :(得分:1)

服务器似乎返回了无效的JSON。为什么服务器端脚本的输出以“(”?

开头

如果这实际上不是问题,也许您应该考虑接受一些问题的答案。人们更有可能提供帮助。

编辑:好的,所以你很确定你从服务器上获得了有效的json。尝试将“成功”属性添加到服务器的输出中。

如果这不起作用,你会想要多挖一点。尝试在商店的.load()中添加一个回调选项,并查看传递给回调的内容。这应该可以帮助你找出出错的地方。