本文主要是介绍EXTJS4 定时刷新store,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
现在定时刷新实现了,代码如下:
var judge_store = Ext.create('Ext.data.Store', {id : 'judge_store',model : "judgeModel",//autoLoad : true,remoteSort: true,pageSize:itemsPerPage,proxy : {type : 'ajax',url : '../../../php/admin/check_questions.php?act=show_judge',reader : {type : "json",totalProperty: 'total',root:"result"},simpleSortMode: true }
});judge_store.load({params:{start:0,limit: itemsPerPage}
}); //定时刷新storevar task={run:function(){judge_store.load();//直接load就可以啦},interval:30000 //30秒 }
Ext.TaskManager.start(task);
但是明显能感觉到页面一闪一闪的,受不了。。。。
这篇关于EXTJS4 定时刷新store的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!