ExtJs 4:远程组合框 - 中止先前的请求

时间:2013-03-06 00:50:01

标签: combobox extjs4 typeahead ajax-request

就像标题所说,我想中止之前的ajax请求。每当用户键入请求数据的字母(或数字)时,组合框请求通过ajax,就像我通过ajax说的那样,然后将数据返回到组合框。

我的问题是,每当我在字段中输入用户输入时,ajax请求就会堆积起来。

我想要做的是首先中止先前的请求,然后继续执行当前请求。我试过这段代码:

  comboObj.onTypeAhead = Ext.Function.createInterceptor(comboObj.onTypeAhead, function() {
     Ext.Ajax.abort(); //aborts the last Ajax request
     return true; //runs the onTypeAhead function
  });

那没用,然后尝试了这个:

  ......
  listeners: {
        beforequery: function(evt){
           Ext.Ajax.abortAll(); //cancel any previous requests
           return true;
        }
     }

这对我不起作用,因为我有一个也使用ajax请求的计时器,如果执行了侦听器,它也会被取消。

我该怎么做?

2 个答案:

答案 0 :(得分:6)

我花了很长时间才弄明白。 Ext.Ajax.abort(请求)能够中止请求。但是从商店获取当前请求对象(或者更好,请求对象Ext.Ajax.abort需要)非常困难。

最后我明白了:

...
if (store.loading && store.lastOperation) {
  var requests = Ext.Ajax.requests;
  for (id in requests)
    if (requests.hasOwnProperty(id) && requests[id].options == store.lastOperation.request) {
      Ext.Ajax.abort(requests[id]);
    }
}
store.on('beforeload', function(store, operation) {
  store.lastOperation = operation;
}, this, { single: true });

store.load();
...

不太好但持久的商店负载可靠地取消。

答案 1 :(得分:1)

store.on('beforeload', function(store, operation) {
    store.lastOperation = operation;
    if (store.loading && store.lastOperation) {
        Ext.Ajax.abort(store.lastOperation.request);
    }
});