「bug」安卓版小程序的 wx.request 中的 header 会被改为小写
发布于 6 年前 作者 cuiyong 6438 次浏览 来自 问答

复现代码如下:

wx.request({
 url: url,
 headers: {
   Authorization: ''
 },
 body: body,
 success: res => console.log(res),
 fail: err => console.log(err)
})

通过网络抓包可以看见 request header 中的 Authorization 变成了 authorization

> iOS 设备和微信 web 开发工具中没有这个问题

回到顶部