以下是代码。我想检查加载到 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'}]
});