vue 请求服务器出现跨域

2021-01-14  本文已影响0人  微笑中的你

环境vue2.x

在项目目录下 创建 vue.config.js文件,必须是这个名称

module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: '你自己的服务器路径',
        ws: true,
        changeOrigin: true,
        pathRewrite: {'^/api':''},
      },
    }
  }
}
上一篇下一篇

猜你喜欢

热点阅读