ExtJs中的store获取数据

var ds = new Ext.data.JsonStore({ url: "test.asmx/ShowList", fields: ['name', 'age'] }); //测试数据 [{name:'xx',age:12}] var tmp; ds.load(); ds.on("load", function() { //tmp = ds.data.items[0].data.age; //这个也可以 tmp = ds.getAt(0).get("name"); alert(tmp); });

你可能感兴趣的:(function,测试,url,ExtJs)