2

我有这个 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。

4

2 回答 2

6

您可以使用TaskManager类来帮助执行重复性任务。

var task = {
    run: function() {
        mystore.load();
    },
    interval: 5000
}

// This will reload your store every 5 seconds
Ext.TaskManager.start(task);

// Call when you want to stop polling the server
Ext.TaskManager.stop(task);
于 2012-10-09T09:06:10.047 回答
1

在我的网格代码中,我将函数放在下面并且它起作用了:

setInterval(function() // IN YOUR CASE, IT RELOADS EACH 5 SECONDS
{
    storeReload = Ext.getStore("YourStoreHere");
    storeReload.load();
}
,5000);

我希望这有帮助!

于 2014-04-24T18:13:50.503 回答