forked from davidflanagan/jstdg7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetchWithErrorHandling.js
19 lines (19 loc) · 1012 Bytes
/
fetchWithErrorHandling.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
fetch("/api/users/current") // Make an HTTP (or HTTPS) GET request.
.then(response => { // When we get a response, first check it
if (response.ok && // for a success code and the expected type.
response.headers.get("Content-Type") === "application/json") {
return response.json(); // Return a Promise for the body.
} else {
throw new Error( // Or throw an error.
`Unexpected response status ${response.status} or content type`
);
}
})
.then(currentUser => { // When the response.json() Promise resolves
displayUserInfo(currentUser); // do something with the parsed body.
})
.catch(error => { // Or if anything went wrong, just log the error.
// If the user's browser is offline, fetch() itself will reject.
// If the server returns a bad response then we throw an error above.
console.log("Error while fetching current user:", error);
});