最佳答案
似乎在使用. reduce ()时遇到了一些问题,比如:
const data = await bodies.reduce(async(accum, current, index) => {
const methodName = methods[index]
const method = this[methodName]
if (methodName == 'foo') {
current.cover = await this.store(current.cover, id)
console.log(current)
return {
...accum,
...current
}
}
return {
...accum,
...method(current.data)
}
}, {})
console.log(data)
data
对象被记录为 之前,this.store
完成..。
我知道你可以利用 Promise.all
的异步循环,但这适用于 .reduce()
吗?