Extjs之Ajax的运用

前端之家收集整理的这篇文章主要介绍了Extjs之Ajax的运用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
    @H_502_1@Ext.Ajax并不是一个类,而是一个对象,因此,我们不用实例化它; @H_502_1@Ext.Ajax有个很重要的方法:requeset(),这个方法是实现ajax的前提和基础; @H_502_1@Extjs自身已经实现了ajax异步传输机制,代码如下:
    @H_502_1@Ext.Ajax.request({ @H_502_1@url : Global_Path + '/manage/flow/operauth/modifyname.do?method=approval', @H_502_1@method : 'post', @H_502_1@params : { @H_502_1@approval : Ext.encode(histroyForm.getForm().getValues()) @H_502_1@}, @H_502_1@success : function(response,opts) { @H_502_1@var retMsg = Ext.decode(response.responseText); @H_502_1@if ('true' == retMsg.__msg){ @H_502_1@Ext.Msg.alert('消息','审批成功!',function(){ @H_502_1@centerPanel.getLayout().setActiveItem(0); @H_502_1@centerGrid.getStore().reload(); @H_502_1@}); @H_502_1@} else { @H_502_1@Ext.Msg.alert('消息','审批失败,请联系管理员!'); @H_502_1@} @H_502_1@}, @H_502_1@failure : function(response,opts) { @H_502_1@Ext.Msg.alert('消息','审批失败,请联系管理员!'); @H_502_1@} @H_502_1@});

猜你在找的Ajax相关文章