vue中自动判断开发及生产环境切换接口代理

在 main.js 中配置

// 自动构建开发及生产环境API路径
if(process.env.NODE_ENV === "development"){
  //开发环境
  Vue.prototype.$xxx = '/xxx';
  Vue.prototype.$xxx2= '/xxx2';
}else{
 //生产环境
  Vue.prototype.$xxx = '';
  Vue.prototype.$xxx2= '';
}

vueCli 2以上在 vue.config.js 中

module.exports = {
  devServer: {
    proxy: {
      "/xxx": {
        target: "http://www.baidu.com",
        changeOrigin: true,
        ws: true,
        pathRewrite: {
          "^/xxx": ''
        }
      }
    }
    .... 添加其他代理
  }
}

vuecli2 以下配置代理在 config/index.js

dev:{
  proxyTable:{
    '/xxx': {
        target: 'http://www.baidu.com',
        changeOrigin: true,
        secure: false,
        pathRewrite: { 
          '^/xxx': '' 
        }
    },
    .... 添加其他代理
  }
}
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇