JavaScript - 仅为多个请求运行一个Promise

时间:2015-11-14 00:23:52

标签: javascript promise

我希望对象请求JavaScript承诺,但我不希望它们创建单独的承诺。我想要实现的逻辑如下 - 检查一个承诺是否未决,只有不承诺,创建一个新的承诺。这可能吗?根据文件,我无法检查承诺的状态,我只能在它满满后处理它,但我不想为每个承诺请求致电处理程序,我不会想要运行多个Promise,如果一个Promise的回调可以响应所有过去的请求......

我试图以这种方式解决的问题是从外部服务器获取数据并在收到后通过事件将其广播到多个对象。

1 个答案:

答案 0 :(得分:5)

当然,这很容易实现

var _p = null; // just a cache
function batchRequests(fn){
    if(_p != null) return _p; // if we have an in-flight request, return it
    _p = fn(); // otherwise start a new action
    _p.then(function(){ _p = null; },  // delete cache on resolve
            function(){ _p = null; }); // even on failure
    return _p; // return the new in-flight request
}

让你这样做:

function delay(){ // just for example, simulate a request
    return new Promise(function(resolve){ setTimeout(resolve, 1000); });
}

var batched = function(){ return batchRequests(delay); };
batched().then(function(){ console.log("All these"); });
batched().then(function(){ console.log("execute after"); });      
batched().then(function(){ console.log("one second, at the same time"); });