as in the question, use async.eachSeries (data,function (item,callback) {}, function (err) {}) to operate asynchronously. The function function does nothing but the output console.log (item) item, only outputs the first one, and the callback function does not execute
.