1.vue webpack init 项目名称(创建的项目跨域方式)
步骤:config文件夹–>index.js文件–>proxyTable(ctrl+f|查找)
proxyTable: {
'/api': {
target: 'http://localhost:4000', // 目标接口域名
/*
*如果有端口号:t
*target: 'http://localhost:4000:端口号(8080)',
*target: 'url', // url指你要跨域的地址
*/
changeOrigin: true, // 是否跨域
pathRewrite: {
'^/api': '/' // 重写接口
}
}
},
2.vue create 项目名称(创建的项目跨域方式)
步骤:新建vue.config.js文件(最外层:package.json一样的目录)–>编写内容
vue.config.js的其他内容:
https://cli.vuejs.org/zh/config/#devserver-proxy
module.exports = {
devServer: {
/*第一种写法*/
proxy: {
'/api': {
target: 'http://localhost:4000', // 目标接口域名
/*
*如果有端口号:t
*target: 'http://localhost:4000:端口号(8080)',
*target: 'url', // url指你要跨域的地址
*/
changeOrigin: true, // 是否支持跨域
pathRewrite: {
'^/api': '/' // 重写接口
}
}
},
/*第二种写法*/
proxy: 'url', // url指你要跨域的地址,例如: proxy: 'http://localhost:4000'
}
(可以选择不看,自己理解)
为什么要跨域?
跨域:一个域名请求另外一个域名的资源,
浏览器有一种安全策略:同源策略(协议,域名,端口三个相同)
同源策略报错:当出现这个图片的报错时,你就应该去跨域了。