1、打开config文件中的index.js文件
更改module.exports下面的proxyTable
设置接口为api开头,设置target为要访问的地址(比如后台开发人员的ip地址),changeOrigin为true表示跨域访问,其他代码不用改。

proxyTable: {
  '/api': {
    target: 'http://10.112.27.66:8080', // 真实请求的地址
    changeOrigin: true, // 是否跨域
    pathRewrite: {
      '^/api': '' //需要rewrite的
    }
  }
},

在这里插入图片描述
改完重启项目npm run dev,输入网址即可访问接口,后台我的接口名字叫login。
重启项目访问http://localhost:8080/api/login即可得到返回值。
在这里插入图片描述
完成!

Logo

前往低代码交流专区

更多推荐