我的代碼有什麼問題嗎?我使用async.eachSeries
,但是我的結果總是拋出undefined。async.js:async.eachSeries結果總是拋出undefined
這裏我的代碼:
async.eachSeries([1,2,3], function(data, cb) {
setTimeout(function() {
cb(null, data+1);
}, 1000);
}, function(err, result) {
console.log(err, result);
});
我的日誌返回:null
,不確定的,而不是null
,[2,3,4]
感謝...和我糟糕的英國XD
謝謝...我剛剛注意到它...每個系列沒有結果參數XD – Sunny