Content-Type的区别
- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
application/json 和application/x-www-form-urlencoded两种方式;application/json 有的小程序可以,但有的就是不行。小程序在使用上有什么特殊的设置吗?
2 回复
wx.request({
url: getApp().globalData.rootDocment + ‘add_two’,
method: ‘POST’,
header: { ‘Content-Type’: ‘application/x-www-form-urlencoded’ },// application/json application/x-www-form-urlencoded
data: {
a:1000,
b:4565,
},
在这里application/json就是不行;必须用application/x-www-form-urlencoded
我另外一个程序就可以用 application/json正常调用;