排查了挺久.. 发现之前代码请求网络的header加了'Content-Type': 'application/json';
uni.request({
url: url,
header: {'Content-Type': 'application/json', 'Authorization': "xxxx"},
dataType: 'json',
早上没有更新HBuilderX的时候还好好的... 更新之后编译为H5 运行, 发觉请求发送有问题..
用调试工具看
提示:
Provisional headers are shown
Content-Type: application/json, application/json // 多了一个
把之前header的'Content-Type去掉解决了问题
uni.request({
url: url,
header: {'Authorization': "xxxx"},
dataType: 'json',
此时调试工具输出正常
Content-Type: application/json
1 个回复
1***@163.com
Provisional headers are shown
Accept: application/json, text/plain, /
我的是这样的