码迷,mamicode.com
首页 > Web开发 > 详细

extjs Ext.Ajax.request 同步和异步

时间:2015-06-19 14:54:42      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

 ext3.x 不支持ajax的同步请求,ext4就开始支持。

 1  Ext.Ajax.request({
 2        url : ‘‘,
 3        sync:true,
 4        params : {
 5           name : text.getValue()
 6        },
 7        success : function(response, options) {
 8             var responseArray = Ext.util.JSON.decode(response.responseText);
 9           resultValue=responseArray.resultValue;
10       }
11 });

extjs Ext.Ajax.request 同步和异步

标签:

原文地址:http://www.cnblogs.com/gxl00/p/4588429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!