美文网首页人民广场
理解webpack中proxy的pathRewrite

理解webpack中proxy的pathRewrite

作者: 前端技师胡帅博 | 来源:发表于2021-04-19 16:23 被阅读0次
    proxy: {
      // 一旦devServer(5000)服务器接收到 /api/xxx 的请求,就会把请求转发到另一个服务器(3000)
      // 浏览器和服务器之间有跨域,但是服务器和服务器之间没有跨域
      '/api': {
        target: 'http://localhost:3000',
        // 发送请求时,请求路径重写:将 /api/xxx --> /xxx (去掉/api)
        pathRewrite: {
          '^/api': ''
        }
      }
    }
    
    proxy: {
      // 一旦devServer(5000)服务器接收到 /api/xxx 的请求,就会把请求转发到另一个服务器(3000)
      // 浏览器和服务器之间有跨域,但是服务器和服务器之间没有跨域
      '/api': {
        target: 'http://localhost:3000',
        // 发送请求时,请求路径重写:将 /api/todo--> /todo(去掉/api)
        // http://localhost:3000/api/todo -> http://localhost:3000/test/todo
        pathRewrite: {
          '^/api': '/test'
        }
      }
    }
    

    相关文章

      网友评论

        本文标题:理解webpack中proxy的pathRewrite

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