0

我有一个使用 的应用程序,koa.js对于上下文,我正在连接一个不严格遵循请求/响应模式的外部系统。IE。在“请求”之后,它可能会或可能不会回答。

我能够将我的请求与这些响应相匹配,但是我无法将其放入 koa.js 响应中:

r.get('/...', *function() {

    // (1) cannot yield since it will block and never call (2) ?
    callbacks.storeCb(howToMatchAnEventualResponse, function(err, resp) {  // may never get called depending about how the external system answers
        console.log("I should answer the http req now"); // how to answer the request from here ?
    });

    // has to be done after storingCb, this may or may not trigger the callback above
    externalSystem.sendMessage(msg); // (2)

    // something similar will have to be done in the callback instead
    this.body = {
        success : true,
        response : ''
    };

});

所以我的问题是,我如何在我的回调(或类似的东西)中使用 koa 回答 http 请求,以及如何在未调用回调时发送一个空答案(即,可能在延迟之后)?

我猜我正在寻找类似的东西Promise.race(),但是对于koa,所以使用yield

4

1 回答 1

0

好吧,最后我能够使用bluebird's Promise.race().

我仍然会对使用生成器的解决方案感兴趣。

于 2016-01-05T08:24:55.713 回答