H5+跨域请求

加粗样式@H5+跨域请求
var xhr = new plus.net.XMLHttpRequest();
xhr.onreadystatechange = function(){
switch(xhr.readyState){
case 4:
if(xhr.status == 200){
console.log(JSON.parse(xhr.responseText));
}
}
}
①xhr.open(“GET”,url,false);
②xhr.open(“POST”,url,false);
xhr.setRequestHeader(key,value);
var data = {key:value}
①xhr.send(null);
②xhr.send(JSON.stringify(data));
**注意:亲测:ios上post跨域必须将数据转换成json格式的字符串,否则会接受不到数据

你可能感兴趣的:(H5+,H5+跨域请求)