wx.request() API header参数的key能否不要强制转为小写?
一些标准的后端框架都是区分大小写的,小程序能否不要自动转为小写?比如:
{‘Authorization’: 'Bearer ’ + api_token}就被转成了{‘authorization’: ‘Bearer xxxxx’}导致后端必须要通过其他途径来达到目的。
1 回复
话说,按照 HTTP 标准协议,这个应该是大小写不敏感的,所以你的服务器端应该考虑大小写兼容才对。
https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2
Each header field consists of a name followed by a colon (":") and the field value. Field names are case-insensitive. |