2
新數據自動更新我有這樣的ExtJS的數據存儲與ext.data.store
mystore= Ext.create('Ext.data.Store', {
id: 'store_id',
fields: ['label', 'value', 'id', 'type'],
autoLoad: true,
proxy: {
type: 'ajax',
url: 'url/to/controller',
reader: {
type: 'json',
root: 'MyModel'
}
}
});
是否有可能與ExtJS的配置,使這家店發送新數據的Ajax請求一些時間間隔(如5秒)自動?
我想使用所有的功能,ExtJS的能提供如此,我不使用PHP或額外的JavaScript。
你也可以看看服務器端推送,比如WebSockets的或彗星 –