其他分享
首页 > 其他分享> > vue本地跨域解决方案

vue本地跨域解决方案

作者:互联网

本地:http://localhost:3001/
后台:http://localhost:3002/
proxy: {
    '/vue-manage': {
        target: 'http://localhost:3001/',
        changeOrigin: true,
        pathRewrite: {
            '^/vue-manage': '',
        },
    },
},

前端接口统一使用/vue-manage前缀进行处理,当匹配到此前缀时,表示该接口需要进行代理,例如本地/vue-manage/test会被代理成http://localhost:3002/test

标签:vue,http,跨域,解决方案,manage,3001,3002,localhost
来源: https://www.cnblogs.com/baifangzi/p/15393683.html