vue中的跨域
Posted randomlee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中的跨域相关的知识,希望对你有一定的参考价值。
proxyTable: { ‘/zabbix_api‘: { target: ‘http://10.88.22.8‘,//设置你调用的接口域名和端口号 别忘了加http changeOrigin: true, pathRewrite: { ‘^/zabbix_api/‘: ‘/zabbix_api/‘, } }, ‘/passwd‘: { target: ‘http://10.88.22.8‘,//设置你调用的接口域名和端口号 别忘了加http changeOrigin: true, pathRewrite: { ‘^/passwd/‘: ‘/passwd/‘, } } },
以上是关于vue中的跨域的主要内容,如果未能解决你的问题,请参考以下文章
Vue---vue-cli 中的proxyTable解决开发环境中的跨域问题
Vue.js学习—— 分别从前后端Nginx解决SpringBoot+vue.js项目中的跨域问题