报错提示:
org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported
问题源
前端的按钮
<div class = "xxx">
<button class="xxx" id="xxx">xxx</button>
</div>
错误分析
button
标签不设置type
属性时,默认为submit
类型,自定义了此按钮逻辑,点击按钮后不仅会进行自定义的逻辑,还会进行一次表单提交,所以就导致出现Request method 'POST' not supported
问题
解决方法
方法一
添加type
属性为button
<button class="xxx" type="button" id="xxx">xxx</button>
方法二
使用a
标签
<a class="xxx" id="xxx">xxx</a>