proxy err-404!
来源:3-8 使用 WebpackDevServer 提升开发效率
慕少0974861
2019-05-14
环境版本: vue-cli3
问题: 请求后404
config
module.exports = {
lintOnSave: false,
devServer: {
proxy: {
'/api': {
target: 'http://192.168.xx.xx:8989',
// target: 'http://api.ovo-c.cn',
ws: false,
changeOrigin: true
}
}
}
};
code
this.$http.post('/api/bjmpis/a/login',data)
.then(res => {
console.log(res)
})
err
POST http://192.168.xx.xx:8080/api/bjmpis/a/login 404 (Not Found)
Request failed with status code 404
写回答
2回答
-
慕少0974861
提问者
2019-05-16
8080端口的是我本地服务器ip的,target 地址是同事电脑ip
012019-05-17 -
Dell
2019-05-16
很奇怪,你上面是8989,为什么下面是8080呢,是不是没有重启
00
相似问题