• 在用vue的axios请求delete接口的时候报The DELETE method is not supported for this route. Supported methods: GET, HEAD, POST,如下:

在这里插入图片描述

  • vue中的代码如下:
axios.delete('http://blog.test/api/type',{'id':id}).then(response => (console.log(response)))

  • 解决办法为: 修改一下传参的方式即可
axios.delete('http://blog.test/api/type/' + id).then(response => (console.log(response)))

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐