function net_post(url,data,func,err)
{
if(!NETHPPT)
{
//alert(JSON.stringify(data));return false;
NETHPPT = true;
var info = {state:-1,code:-1,data:''};
var xhr = new plus.net.XMLHttpRequest();
xhr.onreadystatechange = function () {
info.state = this.readyState;
info.code = this.status
if(info.state==4){
if(this.status==200){
NETHPPT = false;
if(typeof func=='function')func(this.responseText);
}else{
NETHPPT = false;
if(typeof err=='function')err(info);
}
}
}
xhr.open('POST',url);
xhr.send(JSON.stringify(data));
}
}
data参数换成案例演示的也不行 {name:'HBuilder',version:'0.1.0'};
POST请求的页面获取不到任何数据,只能GET方式获取数据?
服务端PHP代码
var_dump($_POST);
var_dump($_GET);
delete
提交过去的是json格式,在接口那得获取提交的数据,解析成数组
2016-03-15 01:19