Ext-ajax请求数据
Ext.Ajax.request({ url: webPath+'/news/newsEastmoneyList', method: 'POST', success: function (response, options) { var data = Ext.decode(response.responseText); if(data.success){ list.getStore().load({page:1}); Ext.Msg.alert('提示','提取成功,共提取'+data.zg+'条.'); }else{ Ext.Msg.alert('提示',data.error); } }, failure: function (response, options) { Ext.Msg.alert('提示','提取失败,请求地址错误'); } });
知识只有共享才能传播,才能推崇出新的知识,才能学到更多,这里写的每一篇文字/博客,基本都是从网上查询了一下资料然后记录下来,也有些是原滋原味搬了过来,也有时加了一些自己的想法