ajaxの手順(原音JS)
1229 ワード
//1、
var obj=new XMLHttpRequest();
//2、
//open( ,url, )
// get post
//url
// , false true
obj.open('get','url.json',true);
//send()
// get send(null)
obj.send(null)
// status http
//400
//200 OK
//404 not found
//500
// readyState
//0-4
//0
//1 , open, send
//2 ,send
//3 ajax
//4
//
//onreadystatechange
obj.onreadystatechange=function(){
if(obj.status==200&&obj.readyState==4){
//
//responseText
}
}
console.log(obj.responseText);
var data=JSON.parse() // json json
//JSON.stringify() // json json
var data=JSON.stringify(JSON.parse(obj.responseText));
console.log(data)