我正尝试使用api/
和http://localhost:3000
将所有vue-axios
个请求代理到vuex
。命令行上的输出表明代理已经创建,但它实际上并没有代理到正确的地址和404。
我在webpack中有以下设置:
dev: {
env: require('./dev.env'),
port: 8080,
autoOpenBrowser: true,
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {
'api/': {
target: 'https://localhost:3000/api',
changeOrigin: true,
pathRewrite: {
'^/api':""
}
}
}
}
在我的行动档案中,我有:
import Vue from 'vue'
export const register = ({ commit }, user) => {
return new Promise((resolve, reject) => {
Vue.axios.post('users', user)
.then(res => {
console.log(res)
debugger
})
.catch(err => {
console.error(err)
debugger
})
})
}
控制台输出表明代理已经建立:
[HPM] Proxy created: /api -> https://localhost:3000/api
[HPM] Proxy rewrite rule created: "^/api" ~> ""
但是当我实际调用该函数时,它会返回http://localhost:8080/users 404 (Not Found)
这是不正确的?
我咨询了
Stackoverflow:Proxy requests to a separate backend server with vue-cli
Vue docs:https://vuejs-templates.github.io/webpack/proxy.html
Github问题:https://github.com/webpack/webpack-dev-server/issues/458
这些解决方案都没有奏效。
我听说这可能是hmr的一个问题,但这似乎不太可能。
有什么想法吗?
我尝试了以下组合:
'/api': {
target: 'https://localhost:3000',
secure: false,
changeOrigin: true
},
'api/': {
target: 'https://localhost:3000',
secure: false,
changeOrigin: true
},
'api/*': {
target: 'https://localhost:3000',
secure: false,
changeOrigin: true
},
'*/api/**': {
target: 'https://localhost:3000',
secure: false,
changeOrigin: true
},
'*': {
target: 'https://localhost:3000',
secure: false,
changeOrigin: true
},
'/api/*': {
target: 'http://localhost:3000',
changeOrigin: true
}
proxy: {
"/api": {
"target": {
"host": "localhost",
"protocol": 'http:',
"port": 3000
},
ignorePath: true,
changeOrigin: true,
secure: false
}
},
答案 0 :(得分:2)
我只是遇到了同样的问题,并尝试了一切。事实证明,代理将匹配的路径段/api
附加到目标的末尾,并在那里寻找代理文件。所以这条规则:
'/api/*': {
target: 'http://localhost:3000',
changeOrigin: true
}
实际上是在这里寻找文件:
http://localhost:3000/api
非直觉。如果希望此功能更直观地定位实际目标,则需要从路径中删除匹配的部分,如下所示:
pathRewrite: {'^/api' : ''}
正确的规则变为:
'/api/*': {
target: 'http://localhost:3000',
changeOrigin: true,
pathRewrite: {'^/api' : ''}
}
由于未知原因,pathRewrite
并未在文档侧边栏here中明确列出,尽管它被藏在配置指南中的1个位置。
答案 1 :(得分:0)
请尝试向以下Vue.axios.post("api/users", user)
发出请求。