mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 17:26:45 +00:00
Add error box in async
This commit is contained in:
parent
3d239c189c
commit
4e18a6aeb9
@ -20,7 +20,7 @@ const displayData = (data) => {
|
|||||||
.forEach(tr => table.appendChild(tr));
|
.forEach(tr => table.appendChild(tr));
|
||||||
};
|
};
|
||||||
|
|
||||||
const addErrBox = () => {
|
const addErrBox = async () => {
|
||||||
const controls = document.querySelector(".pure-controls");
|
const controls = document.querySelector(".pure-controls");
|
||||||
const errBox = document.createElement("p");
|
const errBox = document.createElement("p");
|
||||||
errBox.setAttribute("id", "errBox");
|
errBox.setAttribute("id", "errBox");
|
||||||
@ -82,7 +82,6 @@ const submitForm = () => {
|
|||||||
body: `${longUrl.value};${shortUrl.value}`
|
body: `${longUrl.value};${shortUrl.value}`
|
||||||
})
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
console.log("0");
|
|
||||||
if (!res.ok) {
|
if (!res.ok) {
|
||||||
if (document.getElementById("errBox") == null) {
|
if (document.getElementById("errBox") == null) {
|
||||||
addErrBox();
|
addErrBox();
|
||||||
|
Loading…
Reference in New Issue
Block a user