我需要中止EXT JS store加载(这是使用ajax调用的网格面板存储)。

我正在使用Ext JS 3.4

我尝试了以下方法。

Ext.Ajax.abort(store.proxy.activeRequest);
delete store.proxy.activeRequest;

最佳答案

可以通过给出条件来解决,

var activeRequest = store.proxy.activeRequest;

if (typeof activeRequest.read != 'undefined')
{
    Ext.Ajax.abort(activeRequest.read);
}

07-26 09:35