原生WEB项目可以使用nginx设置代理跨域访问接口获取session,在vue中可以通过配置文件设置,更加方便。
vue-cli3中根目录新建vue.config.js文件内粘贴下面代码
module.exports = {
devServer: {
host: "xxx.sdmefamilydev.189smarthome.com",
port: 8000,
https: false,
open: true,
proxy: 'http://sdmefamilydev.189smarthome.com:9999'
}
}
proxy
为需要代理的真实地址
host
为真实地址下的二级域名