0
我有兩個URL會添加新用戶並按順序編輯用戶。如何將第一個請求的輸出傳遞給第二個請求作爲輸入。將一個API調用的響應傳遞給另一個API
http://localhost:3010/postuser
{"name":"xyz"}
// response will be unique id =>001
http://localhost:3010/putuser
{"id":001} //Get the output of first request as input here
下面是我的代碼
function httpGet(options, callback) {
request(options,
function (err, res, body) {
callback(err, body);
}
);
}
const urls = [
{
url: 'http://localhost:3010/postuser',
method: 'POST'
},
{
url: 'http://localhost:3010/putuser',
method: 'PUT'
}
];
async.mapSeries(urls, httpGet, function (err, res) {
if (err) return console.log(err);
console.log(res);
});
如果有人知道答案,請發表您的評論或回答,而不是向下投票 – user4324324