try fetch api

This commit is contained in:
Jacob Janzen 2024-04-28 15:42:23 -05:00
parent 5d7c1b955b
commit d843b6051a

View file

@ -1,12 +1,3 @@
const xhr = new XMLHttpRequest();
xhr.open("GET", "https://aidang.cc/webring/all")
xhr.send();
xhr.responseType("json");
xhr.onload = () => {
if (xhr.readyState == 4 && xhr.status == 200) {
console.log(xhr.response);
} else {
console.log(`Error: ${xhr.status}`);
}
}
fetch("https://aidang.cc/webring/all", {
method: "GET"
}).then((response) => response.json()).then((json) => console.log(json));