2 回答
TA贡献1818条经验 获得超3个赞
id 是索引,而不是实际值。您需要做的就是附加 userIds[id],而不是附加 id
const userIds = [
// Squall
'226618912320520192',
// Tofu
'249855890381996032',
// Alex
'343201768668266496',
// Jeremy
'754681236236140666',
// Maddo
'711211838305599538',
// Arden
'375573674306306050',
// Neo
'718874307316678698',
// Mytho
'480092510505402380',
// Yuun
'630427600220717067'
];
const fetchData = async() => {
let users = [];
for (const id in userIds) {
const response = await fetch('https://api.codetabs.com/v1/proxy/?quest=http://hamsterland.herokuapp.com/api/users?id=' + userIds[id]);
const user = await response.json();
users.push(user);
}
return users;
}
fetchData().then(ele => console.log(ele)).catch(e => console.log(e.message))
与当前问题无关,在 for 循环中等待并不是一个好的做法。在 for 循环中等待,等待每个调用完成,然后再执行下一个调用。使用 Promise.all 将同时进行所有调用。下面是 Promise.all 的片段。
const fetchData = async() => {
let users = [];
for (const id in userIds) {
users.push(fetch('https://api.codetabs.com/v1/proxy/?quest=http://hamsterland.herokuapp.com/api/users?id=' + userIds[id]));
}
const results = await Promise.all(users);
return Promise.all(results.map(result => result.json()));
}
TA贡献1772条经验 获得超6个赞
如果你只是这样做
for (const id in userIds) {
console.log(id);
}
你就会看到问题所在。在此循环中,id是键,而不是值。你可能会得到404s 作为回报。
使用for... of循环代替for... in.
添加回答
举报