Uncaught (in promise) Error: Request failed with status code 404
程序员文章站
2022-04-19 17:16:48
...
今天做修改的时候回显是没问题,提交的时候提交按钮一直在爱的魔力转圈圈,
看前台的保错信息
后台的保错信息
2019-12-04 17:14:41.765 [http-nio-31001-exec-6] DEBUG o.s.b.w.s.f.OrderedRequestContextFilter - Bound request context to thread: org.apache.catalina.connector.RequestFacade@41d19cea
2019-12-04 17:14:41.769 [http-nio-31001-exec-6] DEBUG o.s.b.w.s.f.OrderedRequestContextFilter - Cleared thread-bound request context: org.apache.catalina.connector.RequestFacade@41d19cea
后台的保错信息我不太看得懂,就不说了,
前台是路径地址有问题,可以直接的看出来他这个跟我要的是完全不一样的。
这个是我修改前台的代码,路径看着是没问题的,但跟别的对比就看出问题了
export const page_edit = (id,params) =>{
return http.requestPut(apiUrl + 'cms/page/edit/' + id, params)
}
这个是添加的代码,
export const page_add = (params) => {
return http.requestPost(apiUrl+'/cms/page/add',params);
}
这样就直观的看出我修改的路径哪里错误了,apiUrl与后面路径进行拼接的时候少了一个’/’,导致apiUrl与cms拼接到了一起,就没有触发proxyTable
这个事情告诉了我们敲代码一定要仔细,有了错误就要跟没有错误的地方进行自己对比就很容易发现自己的错误了。
推荐阅读
-
Uncaught (in promise) Error: Request failed with status code 415
-
VUE 登录不上,F12报错Uncaught (in promise) Error: Request failed with status code 404
-
Uncaught (in promise) Error: Request failed with status code 404
-
axios请求报Uncaught (in promise) Error: Request failed with status code 404
-
axios请求报Uncaught (in promise) Error: Request failed with status code 404
-
vue使用axios报404错误:Uncaught (in promise) Error: Request failed with status code 404
-
vue使用axios报404错误:Uncaught (in promise) Error: Request failed with status code 404