1、在config文件中修改index.js
proxyTable: { "/api":{ target: 'https://www.baidu.com/muc/',//你需要跨域的url changeOrigin: true, pathRewrite: { '^/api': '/' } } },
2、在config文件中修改dev.env.js
module.exports = merge(prodEnv, { NODE_ENV: '"development"', API_HOST:'/api/' //开发环境中加上这段关键,不然出错 })
3、在config文件中修改prod.env.js
module.exports = { NODE_ENV: '"production"', API_HOST: 'https://www.baidu.com/muc/'//生产环境中加上这段关键,不然出错 }
4、在你请求的端口之前加上
this.$axios .get([ '/api/captch/sent?phone' //这里需要在你请求的端口之前加上/api/. ]) .then(response => { // success }) .catch(error => { // error console.log(error) })
总结:这4步一步也不能少,谨记