Ext中ajax调用,显示加载显示。

前端之家收集整理的这篇文章主要介绍了Ext中ajax调用,显示加载显示。前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
handler:function(){
		    		  me.getEl().mask("获取批复中...");
		    		  Ext.Ajax.request({
		    			  url: '../ZxbShipMentApplyController/obtainApprove.json',method : "POST",success: function(response){
		    				  me.getEl().unmask();
		    				  var text = response.responseText;
		    				  //console.log(text);
		    				  // process server response here
		    				  Ext.Msg.alert("提示!","申请批复成功");
		    			  }
		    		  });
		    	  }

猜你在找的Ajax相关文章