web-dev-qa-db-ja.com

Promisesと以前の結果を連鎖して共有する方法

私はbluebirdライブラリを使用しており、一連のHTTPリクエストを作成する必要があり、次のHTTPリクエストに対する応答データの一部が必要です。 callhttp()というリクエストを処理する関数を作成しました。これは、URLとPOSTの本文を受け取ります。

私はこのように呼んでいます:

var payload = '{"Username": "joe", "Password": "password"}';
var join = Promise.join;
join(
    callhttp("172.16.28.200", payload),
    callhttp("172.16.28.200", payload),
    callhttp("172.16.28.200", payload),
    function (first, second, third) {
    console.log([first, second, third]);
});

最初のリクエストは、2番目のリクエストに渡す必要のあるAPIキーを取得します。最初のリクエストから応答データを取得するにはどうすればよいですか?

更新

これはcallhttp関数です:

var Promise = require("bluebird");
var Request = Promise.promisify(require('request'));

function callhttp(Host, body) {

    var options = {
        url: 'https://' + Host + '/api/authorize',
        method: "POST",
        headers: {
            'content-type': 'application/json'
        },
        body: body,
        strictSSL: false
    };

    return Request(options).spread(function (response) {
        if (response.statusCode == 200) {
           // console.log(body)
            console.log(response.connection.getPeerCertificate().subject.CN)
            return {
                data: response.body
            };
        } else {
            // Just an example, 200 is not the only successful code
            throw new Error("HTTP Error: " + response.statusCode );
        }
    });
}
52
user1513388

依存する約束と、あるデータから次のデータへデータを渡すためのモデルがいくつかあります。どちらが最適に機能するかは、次の呼び出しで前のデータのみが必要か、またはすべての前のデータにアクセスする必要があるかによって異なります。以下にいくつかのモデルを示します。

次から次へのフィード結果

_callhttp(url1, data1).then(function(result1) {
     // result1 is available here
     return callhttp(url2, data2);
}).then(function(result2) {
     // only result2 is available here
     return callhttp(url3, data3);
}).then(function(result3) {
     // all three are done now, final result is in result3
});
_

中間結果を上位スコープに割り当てる

_var r1, r2, r3;
callhttp(url1, data1).then(function(result1) {
     r1 = result1;
     return callhttp(url2, data2);
}).then(function(result2) {
     r2 = result2;
     // can access r1 or r2
     return callhttp(url3, data3);
}).then(function(result3) {
     r3 = result3;
     // can access r1 or r2 or r3
});
_

1つのオブジェクトに結果を蓄積する

_var results = {};
callhttp(url1, data1).then(function(result1) {
     results.result1 = result1;
     return callhttp(url2, data2);
}).then(function(result2) {
     results.result2 = result2;
     // can access results.result1 or results.result2
     return callhttp(url3, data3);
}).then(function(result3) {
     results.result3 = result3;
     // can access results.result1 or results.result2 or results.result3
});
_

ネスト、つまり以前のすべての結果にアクセスできる

_callhttp(url1, data1).then(function(result1) {
     // result1 is available here
     return callhttp(url2, data2).then(function(result2) {
         // result1 and result2 available here
         return callhttp(url3, data3).then(function(result3) {
             // result1, result2 and result3 available here
         });
     });
})
_

チェーンを独立したピースに分割し、結果を収集する

チェーンの一部が次々にではなく独立して続行できる場合、それらを個別に起動し、Promise.all()を使用して、それらの複数の部分がいつ完了したかを知ることができます。独立した部分:

_var p1 = callhttp(url1, data1);
var p2 = callhttp(url2, data2).then(function(result2) {
    return someAsync(result2);
}).then(function(result2a) {
    return someOtherAsync(result2a);
});
var p3 = callhttp(url3, data3).then(function(result3) {
    return someAsync(result3);
});
Promise.all([p1, p2, p3]).then(function(results) {
    // multiple results available in results array
    // that can be processed further here with
    // other promises
});
_

ES7でawaitを使用したシーケンス

Promiseチェーンは非同期操作をシーケンスするためのメカニズムにすぎないため、ES7ではawaitを使用することもできます。その場合、中間結果はすべて同じスコープで使用できます(チェーン.then()ハンドラー):

_async function someFunction(...) {

    const r1 = await callhttp(url1, data1);

    // can use r1 here to formulate second http call
    const r2 = await callhttp(url2, data2);

    // can use r1 and r2 here to formulate third http call
    const r3 = await callhttp(url3, data3);

    // do some computation that has access to r1, r2 and r3
    return someResult;
}

someFunction(...).then(result => {
    // process final result here
}).catch(err => {
    // handle error here
});
_
124
jfriend00