Ajax请求超时解决方案:

Ajax请求超时解决方案:
项目使用extjs
首先 修改extjs里面的ajax请求设置 timeout属性
Ext.Ajax.request({
url:'ViewTemplate/ImportInter',
timeout:18000000,
method:'POST'
 
第二 解决php默认超时时间
   在页面中 加入 set_time_limit(3600);
或在控制器请求的方法里加入
@ini_set("max_execution_time",3600);
posted @ 2012-06-12 11:01  holyes  阅读(1344)  评论(0编辑  收藏  举报