store读取数据超时解决方案

ext的store读取数据时,没有办法进行时间超时配置,只能通过代理方式,由connection来进行数据获取时间延长处理方式。

var connObj = new Ext.data.Connection({
timeout : 120000,
url : ‘/jsp/dataSourceURL’,
method : ‘POST’
});

var dataStore = new Ext.data.Store({
// load using HTTP
proxy : new Ext.data.HttpProxy(connObj),
reader : new Ext.data.JsonReader({
root : ‘rows’,
totalProperty : ‘results’
}, recordFormat)
});


参考文档http://rrishikesh.wordpress.com/2009/04/01/data-store-connection-timeout-in-extjs/

你可能感兴趣的:(store)