function ajax(url){
const p=new Promise((resolve,reject)=>{
const xhr=XMLHttpRequest()
xhr.open(‘GET‘,‘/data/test.json‘,true)
xhr.onreadystatechange=function(){
if(xhr.readyState===4){
if(xhr.status===200){
JSON.parse(xhr.responseText)
}else if(xhr.status===404){
reject(new Error(‘404 not found‘))
}
}
}
});
return p
}
原文地址:https://www.cnblogs.com/fanggood/p/12215886.html
时间: 2024-10-17 14:41:01