码迷,mamicode.com
首页 > 其他好文 > 详细

Vue cli4.0 代理配置

时间:2019-11-25 13:15:50      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:get   table   write   origin   page   target   前端   自己的   hang   

proxy: {
            ‘/service‘: {
                target: ‘http://192.168.40.243:3000/‘, //对应自己的接口
                changeOrigin: true,
                ws: true,
            },
            // ‘/page‘:{
            //     target: ‘http://192.168.0.167:9810‘,
            //     changeOrigin: true,
            //     ws:true
            // },
            // ‘/table‘:{
            //     target: ‘http://192.168.0.167:9810/‘,
            //     changeOrigin: true,
            //     ws:true
            // },
            ‘/api‘:{
                target: ‘http://192.168.0.167:9810‘,
                changeOrigin: true,
                pathRewrite: {
            ‘^/api‘:‘/api‘, // 这种接口配置出来实际请求接口 http://192.168.0.167:9810/api/login,
            ‘^/api‘: ‘/‘ } },// 这种接口配置出来实际请求接口 http://192.168.0.167:9810/login, (后端大爷接口没有同意前缀时可以这样处理,前端请求的时候自己加api 前缀,避免每一个不同的前缀要重写一遍)          
}

  

Vue cli4.0 代理配置

标签:get   table   write   origin   page   target   前端   自己的   hang   

原文地址:https://www.cnblogs.com/winyh/p/11926893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!