我尝试从网址加载数据。 我有2个网页。这个页面返回json数据。这个页面是returs相同的数据。
是我的第一页连接。它的工作请求数据没有问题。
var store =Ext.getStore('strUrunler');
store.setProxy({url:'http://localhost:1002/ZULU/NewMobile/data.aspx?act=getAllProducts'});
store.getProxy();
store.load();
store.sync();
和我的第二页。
var store =Ext.getStore('strUrunler');
store.setProxy({url:'http://localhost:63195/default.aspx'});
store.getProxy();
store.load();
store.sync();
所以我刚刚更改了代理网址。但它不起作用。 2.url从页面请求数据但没有显示任何内容。我正在看chorme控制台,没有任何错误。
我的页面源代码在这里。