Extjs 定时任务

//定义数据源      
var urlhttp = '连接地址';           
 var itemStore = new Ext.data.JsonStore({  
   url:urlhttp,  
   totalProperty:'count',  
   root:'members',  
   auteLoad:true,  
   fields:Member,             
   pruneModifiedRecords:true  
   });         
  
       
//定义任务   
var task = {    
   run : function() {itemStore.reload({params : {start : 0,limit : 30 }})  
    },      
   interval : 2000, //2秒刷新一次   
  
   scope : this  
   };  
  //定时执行任务    
  Ext.TaskMgr.start(task);   
  

你可能感兴趣的:(ExtJS)