版权声明:本文为博主原创文章,未经博主允许不得转载。 https://cloud.tencent.com/developer/article/1333858
ThinkPHP3.2
框架(当然跟框架没啥关系)POST
请求数据时,服务器后端无法获得数据,但是改为 GET
请求方式就能顺利获取header
参数,默认的方式为:header: {
'content-type': 'application/json' // 默认值
},
header
参数进行修改,则可以顺利获取POST数据:header: {
'content-type': 'application/x-www-form-urlencoded;charset=utf-8',
},