获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我用put方法 一直报415 怎么处理啊?
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) } }) 请赐教,谢谢!
2020-10-27