EXTJs与java后台怎么交互
1个回答
展开全部
通过ajax的调用呀。
ext里已经很好的封装了ajax调用的类Ext.Ajax
比如
Ext.Ajax.request({
url:"../ajxrpc/logout.logout",
method:"GET",
success:function(B,C){
var D=Ext.util.JSON.decode(B.responseText);
if(D.success){
A.hide();
window.location.href = './index.html';
}
},
failure:function(B,C){
A.hide();
Ext.Msg.alert("Error","Unable to Logout!")
},
scope:this
})
ext里已经很好的封装了ajax调用的类Ext.Ajax
比如
Ext.Ajax.request({
url:"../ajxrpc/logout.logout",
method:"GET",
success:function(B,C){
var D=Ext.util.JSON.decode(B.responseText);
if(D.success){
A.hide();
window.location.href = './index.html';
}
},
failure:function(B,C){
A.hide();
Ext.Msg.alert("Error","Unable to Logout!")
},
scope:this
})
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询