vue和springboot前后联调

  devServer: {
    port: 7000,
    proxy: {
      '/': {
        target: 'http://localhost:8080/',
        changeOrigin: true
      }
    }
  }

上面是vue配置,这个配置就可以跨域,你访问http://localhost:7000/转为访问http://localhost:8080/

posted @ 2023-08-25 18:33  阿飞藏泪  阅读(21)  评论(0编辑  收藏  举报
1 2 3
4