微信发送Https请求500error
https 请求的时候报500 error,好像是关于Header的问题,如果contentType换成application/json的话会报400 error, 写成json的话报org.springframework.http.InvalidMediaTypeException: Invalid media type "json": does not contain ‘/’ ,如何解决????
wx.request({
url: ‘https://www.puh.net/machines/loginIn’,
method: ‘POST’,
header: {
“content-type”: ‘json’
},
dataType:“json”,
data:{
“userName”: userName,
“password”: password
},
success: function (res) {
console.log(res.data);
},
……