作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些数据数组,希望每个数据都能获得一些信息。
我想在进程启动时记录控制台并在进程结束时记录数据,但结果给我的数据与初始化时的数据相同。
我尝试过使用 async/await,但它没有像我预期的那样工作。
这是我的代码
const data = [
{
name: 'User 1',
detail: 0
},
{
name: 'User 2',
detail: 0
},
{
name: 'User 3',
detail: 0
}
];
function getDetail() {
setTimeout(() => {
return "Detail Test";
}, 3000);
}
async function mapping() {
await Promise.all(data.map(async (item) => {
item.detail = await getDetail();
}))
}
console.log("Start");
mapping();
console.log(data);
结果还是一样。
[
{
name: 'User 1',
detail: 0
},
{
name: 'User 2',
detail: 0
},
{
name: 'User 3',
detail: 0
}
]
我的期待
[
{
name: 'User 1',
detail: "Detail Test"
},
{
name: 'User 2',
detail: "Detail Test"
},
{
name: 'User 3',
detail: "Detail Test"
}
]
最佳答案
您的代码有 3 个问题:
getDetail
应该为 await
返回实际等待的 promise 。const getDetail = () => new Promise((resolve) => {
setTimeout(() => {
resolve("Detail Test");
}, 3000);
}
Array.map
不修改原始数组,强烈推荐这样做,但为了回答您的问题:async function mapping() {
await Promise.all(data.map(async (item, i) => {
data[i].detail = await getDetail();
}))
}
async function run() {
console.log("Start");
await mapping();
console.log(data);
};
run();
这是一个有效的 pen
关于javascript - 有没有办法在继续之前等待 promise ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58727913/
我是一名优秀的程序员,十分优秀!