headers: {
‘Content-Type‘: ‘application/x-www-form-urlencoded;charset=UTF-8‘,
},
临时在服务器端,解决方法如下:
$final = file_get_contents(‘php://input‘);
if ($final) {
$final = json_decode($final);
// $final即可为获得文本
}
至于,在含有图片,文件的内容里,还没做到这块业务,暂时待续。。。
原文地址:http://blog.51cto.com/9681602/2116407