为EXt JsonStore设置设置timeOut

前端之家收集整理的这篇文章主要介绍了为EXt JsonStore设置设置timeOut前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
因为数据量较大,后台响应会比较慢,JsonStore调用load方法之后可能出现超时的情况,解决的办法很简单。
把创建JsonStore时的代码
myStore=newExt.data.JsonStore({
url:"http://www.example.com/test.PHP",
...
});

改为:
varmyBigTimeout=90000;//90secmyStore=newExt.data.JsonStore({proxy:newExt.data.HttpProxy({url:"http://www.example.com/test.PHP",timeout:myBigTimeout}),//url:"http://www.example.com/test.PHP",...}); 原文链接:https://www.f2er.com/json/290536.html

猜你在找的Json相关文章