エンドポイントへの GET 呼び出しを行うために使用node-rest-client
していますが、この呼び出しを (ループで) 複数回行い、応答のパラメーターを公開したいと考えています。
コードは次のようになります。
// registering remote methods
client.registerMethod("reflect", "<the URL>", "GET");
// call the method
var i = 10;
while (i>0) {
client.methods.reflect(function (data, response) {
console.log("x-forwarded-for: " + data.headers["x-forwarded-for"]);
// raw response
//console.log(response);
});
i--;
}
私が得るエラーは次のとおりです。
TypeError: Cannot read property 'x-forwarded-for' of undefined
i
が 2 に等しい場合、これで問題ありません。この問題は、これが非同期実行であり、while 内のすべての呼び出しが一度に起動され、行のどこかで詰まりが発生するという事実に起因していると思います。
同期実行を行う最良の方法は何ですか (これが問題の場所であると仮定します)。