plus.net.XMLHttpReques如何将json数据解析,并显示在页面的相应位置呢
chuanjie
- 发布:2014-11-19 13:54
- 更新:2014-11-19 15:22
- 阅读:2585
解析json数据
分类:HTML5+
chuanjie (作者)
提示错误:Unexpected token ',一用这个函数就提示这个错误
我现在在做setrequestheader('content-type','application/json'),post方式发送json数据,但是数据没有在服务器端接收,这是什么原因啊
2014-11-19 15:45
chuanjie (作者)
我的代码:
var data={"username":"eeee"};
xhr=new plus.net.XMLHttpRequest();
xhr.onreadystatechange=xhrStatechange;
var url="user_api.php";
xhr.responseType="json";
xhr.open( "POST", url );
xhr.setRequestHeader('Content-Type','application/json');
2014-11-19 15:56
DCloud_App_Array
xhr.send(JSON.stringify(data));
2014-11-19 16:46