前端axios跨域
在vue.config.js 配置文件中添加 module.exports = { devServer: { host: 'localhost', // 本地的域名 post: 8080, // 本地网站的端口 proxy: { // 会拦截所有/api开头的请求 '/api': { target: 'http://localhost:3000', // 要跨域的域名 changeOrigin: true // 是否开启跨域 } } } } 来源: CSDN 作者: 一个conner 链接: https://blog.csdn.net/qq_35691754/article/details/104682350