问题
前后端交互时出现Method Not Allowed问题
Ajax中使用的是get,方法仍然出现post方法报错
Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported]
浏览器中没有报错,只是接收不到后端返回的结果
解决
最终发现是前后端交互部分和后端代码Controller中参数名不同所导致
修改Controller类中的id为blogId,问题解决