Code Monkey home page Code Monkey logo

lack-proxy's Issues

[bug]无法配合nuxt3的nitro使用

nuxt3的helloworld程序,在nuxt.confg.ts的顶部设置:
lackProxy.setProxy

配置vite的proxy
image

使用useFetch发送请求

dev启动后,报错
image

bug: 如果uri是URL对象时,请求会出错

function ClientRequestProxy(uri, options, cb, isHttps) {
  if (typeof uri === 'string') {
    uri = urlParse(uri);
  }
  if (typeof options === 'function') {
    cb = options;
    options = Object.assign({}, uri);
  } else {
    options = Object.assign({}, uri, options);
  }
  options[HTTP_REQ_FLAG] = true;
  options.isSocket = 0;
  if (isHttps) {
    options._defaultAgent = https.globalAgent;
  }
  const proxy = !checkMethod(uri) && !checkMethod(options) && getProxy(options, isHttps);
  if (proxy && (!proxy.filterRequest || proxy.filterRequest(options))) {
    proxy.isHttps = isHttps;
    options.agent = getAgent(proxy, options);
  }
  ClientRequest.call(this, options, cb);
}

如果uri为URL对象,options = Object.assign({}, uri, options)解构赋值的时候,options对象会变成
image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.