25 lines
774 B
JavaScript
25 lines
774 B
JavaScript
const url = "https://jsonplaceholder.typicode.com/posts";
|
|
async function main() {
|
|
let xhttp = new XMLHttpRequest();
|
|
xhttp.open("GET", url, true);
|
|
|
|
xhttp.onreadystatechange = async function(){
|
|
if (xhttp.readyState === 4){
|
|
if (xhttp.status === 200){
|
|
let sol = await xhttp.responseText;
|
|
//let sol = await JSON.parse(JSON.stringify(xhttp.responseText));
|
|
console.log(`Sikeres kérés: ${sol}`);
|
|
} else if(xhttp.status === 404){
|
|
console.log("Az erőforrás nem található - 404 hibakód");
|
|
} else{
|
|
console.error(`Hiba történt, státuszkód: ${xhttp.status}`);
|
|
}
|
|
|
|
}
|
|
}
|
|
xhttp.send();
|
|
}
|
|
|
|
main();
|
|
|