try fetch api
This commit is contained in:
parent
5d7c1b955b
commit
d843b6051a
1 changed files with 3 additions and 12 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Reference in a new issue