Promise.allSettled
This commit is contained in:
parent
027933531e
commit
d7f90176c7
16 changed files with 191 additions and 253 deletions
|
@ -0,0 +1,24 @@
|
|||
|
||||
async function getUsers(names) {
|
||||
let jobs = [];
|
||||
|
||||
for(let name of names) {
|
||||
let job = fetch(`https://api.github.com/users/${name}`).then(
|
||||
successResponse => {
|
||||
if (successResponse.status != 200) {
|
||||
return null;
|
||||
} else {
|
||||
return successResponse.json();
|
||||
}
|
||||
},
|
||||
failResponse => {
|
||||
return null;
|
||||
}
|
||||
);
|
||||
jobs.push(job);
|
||||
}
|
||||
|
||||
let results = await Promise.all(jobs);
|
||||
|
||||
return results;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue