从小程序发送中文如“app测试”到后端,到数据库后中文显示乱码,如下图:
后端程序定义的为POST请求,则需要在请求中加入 method: 'POST'
即可
wx.request({
url: 'https://www.***.com',
data: {
},
header: {
'Content-Type': 'application/x-www-form-urlencoded',
},
method: 'POST',
success: function (res) {}
},