我在异步系列函数中获取数组的当前对象时遇到问题。在下面的代码中,我想显示当前人员的超时功能。请建议我如何才能得到当前的人才能在那个对象上做出我想要的改变。在回调函数的最后,我想要做的是获取更新的对象数组。
async.series({
personName: function (callback) {
setTimeout(function () {
//In following line show Current Person in console.
console.log(People.Person);
callback(null, People.Person);
}, 200);
}
}, function (err, results) {
if (err) throw err;
console.log(results);
});