0

以下是代码。我想检查加载到 input1store 中的值,我该怎么做?

我试过做alert(input1store),但它只是返回对象,这根本没有帮助。

var input1store = new Ext.data.Store({
    fields: [{name: 'name'}],
    proxy:{
        type: 'ajax',
        url: 'www.requesturl.com?format=json&source1',
        reader: {
            type: 'json',
            root: 'xml.result'
        }
    },
    autoLoad:false,
    sorters: [{property: 'name', direction: 'asc'}]
});
4

1 回答 1

0
var records = input1store.getRange();

for(var i = 0, len = records.length; i < len; i++) {
    alert(records[i].get('name'));
}
于 2013-06-04T19:22:11.703 回答