我想一起使用異步和請求模塊,但我不明白如何通過回調。我的代碼是使用nodejs異步和請求模塊
var fetch = function(file, cb) {
return request(file, cb);
};
async.map(['file1', 'file2', 'file3'], fetch, function(err, resp, body) {
// is this function passed as an argument to _fetch_
// or is it excecuted as a callback at the end of all the request?
// if so how do i pass a callback to the _fetch_ function
if(!err) console.log(body);
});
我試圖以獲取3個文件,並連接結果。我的頭被困在我嘗試過的回調以及我能想到的不同組合中。谷歌沒有太多的幫助。
代碼工作,很容易理解我做錯了什麼,現在:)謝謝 – andrei
您對實例鏈接不顯示任何回調。他們所做的只是登錄到控制檯。 – Catfish