Vue.config.js跨域配置 发表于 2019-06-12 更新于 2024-04-07 项目根目录新建vue.config.jstouch vue.config.js 设置跨域module.exports = { devServer: { proxy: { '/api': { target: 'https://www.boomore.cn', changeOrigin: true, // 是否开启跨域 pathRewiter: { '^/api_prod': '' } } } }}; 调用APIaxios({ method: 'post', url: '/api_prod/booklist/get_topic_list', data: qs.stringify({ key: value, }),}).then(res => { // Coding})