美文网首页
proxy代理404

proxy代理404

作者: 看到这朵小fa了么 | 来源:发表于2020-03-17 15:00 被阅读0次
    proxyTable: {
                '/api': {
                    target:  "http://xxxxxxxxx:xxxx/gemini/login",
                    changeOrigin: true,
                    logLevel: 'debug',
                    pathRewrite: {
                        '^/api': '/'
                    }
                },
            }
    

    这里pathRewrite回调函数替换的时候,把发出去的本地请求:http://localhost:8083/api/gemini/login 拦截到/api,替换为目标地址,pathWerite替换会将api重写,这里需要一个/,重写的回调并不是单纯的替换。

    相关文章

      网友评论

          本文标题:proxy代理404

          本文链接:https://www.haomeiwen.com/subject/mbboehtx.html