日期:2014-05-16 浏览次数:20862 次
///可用用jsonData
------解决方案--------------------
你用的是传统的页面跳转,还是Extjs提倡的,把所有的JS文件都加载到一个JSP或HTML文件里,然后进行页面间的切换。如果是后一种的话,用全局变量传参数就可以了。
------解决方案--------------------
Ext.Ajax.request({
url: targetUrl,
params: setParams,
timeout: 60000,
scope: outer_scope,
disableCaching: true,
disableCachingParam: true,
method: "POST",
success: function(response){
onSuccessFunc(Ext.decode(response.responseText));
myMask.hide();
},
failure: function(response)
{
onFailFunc(response);
myMask.hide();
}
});
ーーーーーーーーーーーーーーーーー
params: setParams, // 传递参数