欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue.js中proxyTable 转发请求的实现方法

程序员文章站 2024-01-23 16:44:34
找到config/index.js 配置文件 proxytable: { '/api': { target: 'http://your_website...

找到config/index.js 配置文件

 proxytable: {
 '/api': {
  target: 'http://your_website',
  changeorigin: true,
  pathrewrite: {    //需要rewrite重写的, 如果在服务器端做了处理则可以不要这段
  '^/api': ''
  }
 }
 }

以上这篇vue.js中proxytable 转发请求的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。