我有这个 extjs 数据存储
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 配置使该商店在某个时间间隔(例如 5 秒)自动发送新数据的 ajax 请求?
我想使用 extjs 可以提供的所有功能,以便我不使用 php 或其他 javascript。