Request method 'PUT' not supported?
这个错误时有时无:
message : “Request method ‘PUT’ not supported” status: 405, error: “Method Not Allowed” 。
改成POST就报Request method ‘POST’ not supported。
controller处是@PutMapping(测试POST的时候改成Postmapping)
部分代码如下:
wx.request({
url: getApp().request_url + '/sign/SignUpdate',
data: {
signID: signID,
status: status,
},
method: 'PUT',
header: {
'content-type': 'application/x-www-form-urlencoded',
'login-token': user_SessionToken
},
success: function(res) {
console.log("update res.data: ")
console.log(res.data)
}
})
请赐教,谢谢!