civ/resources/sandbox/helloajax.js

46 lines
990 B
JavaScript
Raw Normal View History

/* AJAX Tutorial, By The Net Ninja
https://www.youtube.com/watch?v=h0ZUpPiV1ac
*/
window.onload = function(){
2017-06-01 09:21:45 +00:00
$.get("./data/players.json", function(data){
console.log(data);
document.getElementById('atom-players').innerHTML = JSON.stringify(data);
});
2017-06-05 20:43:53 +00:00
$.get("https://server.figytuna.com:8080/ali", function(data){
2017-06-01 09:21:45 +00:00
console.log(data);
document.getElementById('button-hello').innerHTML = data;
});
/*
let http = new XMLHttpRequest();
http.onreadystatechange = function(){
const finalState = 4;
const idealStatus = 200;
if(http.readyState == finalState && http.status == idealStatus){
console.log(JSON.parse(http.response));
}
}
const method = "GET";
const filepath = "data/players.json";
const isASYNC = true;
http.open(method, filepath, isASYNC);
http.send();
2017-06-01 09:21:45 +00:00
*/
}
/* READY STATES
0 - Request not initialized
1 - Request has been set up
2 - Request has been sent
3 - Request is in process
4 - Request is complete
*/