前提:根据这个资料去学习Vue+Node+MongoDB的开发到部署
https://blog.csdn.net/qq_26598303/article/details/53468399
我们在8080的web服务进行开发,但后端在8088端口,所以要开启一个代理服务来请求后端接口,文章中代码如下:

proxyTable: {
   '/api': {
       target: 'http://localhost:8088/api/',
       changeOrigin: true,
       pathRewrite: {
         '^/api': ''
       }
   }
}

但是我遇到了一个问题,请求接口状态返回404。(奇怪的是,几个月前也是用的学习这个资料搭建,并没有遇到过这个问题)
解决办法:

proxyTable: {
   '/api': {
       target: 'http://localhost:8088',
       changeOrigin: true,
       pathRewtite: {
         '^/api': '/api'
       }
   }
}
Logo

前往低代码交流专区

更多推荐