fix : now can catch any errors thrown by awaiting req.json()
This commit is contained in:
parent
7100dad705
commit
7c2a3e6414
1 changed files with 13 additions and 19 deletions
|
@ -1,28 +1,22 @@
|
||||||
|
export async function post_request(url, body, form_status) {
|
||||||
|
|
||||||
export async function post_request(url, body, form_status){
|
|
||||||
let req;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
req = await fetch(url, {
|
const req = await fetch(url, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: JSON.stringify(body),
|
body: JSON.stringify(body),
|
||||||
mode: "cors"
|
mode: "cors"
|
||||||
});
|
});
|
||||||
|
if (req.status !== 200) {
|
||||||
|
form_status.innerHTML = "<span style='background-color: red; color: white'>Failure</span>";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let temp = await req.json();
|
||||||
|
|
||||||
|
if (temp.result === 'error') {
|
||||||
|
form_status.innerHTML = `<span style='background-color: red; color: white'>${temp.error}</span>`;
|
||||||
|
} else {
|
||||||
|
form_status.innerHTML = "<span style='background-color: green; color: white'>Success</span>";
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
form_status.innerHTML = `<span style='background-color: red; color: white'>${e}</span>`;
|
form_status.innerHTML = `<span style='background-color: red; color: white'>${e}</span>`;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (req.status !== 200) {
|
|
||||||
form_status.innerHTML = "<span style='background-color: red; color: white'>Failure</span>";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let temp = await req.json();
|
|
||||||
if (temp.result === 'error') {
|
|
||||||
form_status.innerHTML = `<span style='background-color: red; color: white'>${temp.error}</span>`;
|
|
||||||
} else {
|
|
||||||
form_status.innerHTML = "<span style='background-color: green; color: white'>Success</span>";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue