报错:Uncaught (in promise) Error: Request failed with status code 404

错误:

请添加图片描述

错误原因:写axios工具类的代理路径出错,多了“”

// 创建axios实例
const service = axios.create({
  baseURL: '"http://localhost:9001"', // api 的 base_url
  timeout: 20000 // 请求超时时间
})

删除双引号即可

造成这个错误的原因不是前端路径错了,就是后端写@RestMapping(“b/a”)里面少了/,改为@RestMapping(“/b/a”)即可,这个@RestMapping是类上的。

Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐