Giter VIP home page Giter VIP logo

Comments (9)

tsctx avatar tsctx commented on July 17, 2024 1

just use Object.fromEntries.

// Comment out this comment and have the latest undici installed just to verify it's still
// present in latest Undici, but for the test you can use the global Undici bundled in Node
// import { fetch } from "undici";

{
  const baseHeaders = { "x-foo": "bar" };

  const requestHeaders = new Headers({ "Content-Type": "application/json" });
  const headers = {
    ...baseHeaders,
    ...Object.fromEntries(requestHeaders),
  };
  console.log("Result", headers);

  await fetch("https://google.com", {
    method: "POST",
    headers,
  });
}

from undici.

kettanaito avatar kettanaito commented on July 17, 2024 1

@mcollina, yeah, you are right. Headers instance itself won't spread, it will return an empty object. But neither will it throw, so that behavior is unexpected although useful as it lets the user know they aren't doing anything (the error is not hinting at that, though).

from undici.

KhafraDev avatar KhafraDev commented on July 17, 2024 1

This was caused by fd66cf0 which exposed the issue. Our only choice is to move towards private properties I think.

from undici.

kettanaito avatar kettanaito commented on July 17, 2024

Reported tangentially by MSW users as well.

from undici.

tsctx avatar tsctx commented on July 17, 2024

You are using the spread operator incorrectly.
In Headers you need to use it with arrays, not objects.

from undici.

juliusmarminge avatar juliusmarminge commented on July 17, 2024

Yes I know I can do that, (and I did work around the issue in pingdotgg/uploadthing#813) - but that's working around the issue that the behavior changed in a minor Node.js release (havent tracked down what exact Undici release the behavior changed in)

from undici.

mcollina avatar mcollina commented on July 17, 2024

From a quick look at the behaviors in browsers, I think that the correct implementation is:

  const baseHeaders = { "x-foo": "bar" };

  const requestHeaders = new Headers({ "Content-Type": "application/json" });
  const headers = {
    ...baseHeaders,
    ...Object.fromEntries(requestHeaders),
  };

Note that the following does not work in browsers either:

  const baseHeaders = { "x-foo": "bar" };

  const requestHeaders = new Headers({ "Content-Type": "application/json" });
  const headers = {
    ...baseHeaders,
    ...requestHeaders,
  };
  console.log("Result", headers);

It will result in not having Content-Type in headers object.

Having said that, I think it should not crash but works as expected & similarly to browsers.


@KhafraDev ping

from undici.

juliusmarminge avatar juliusmarminge commented on July 17, 2024

It will result in not having Content-Type in headers object

Oh wow I didnt even realize that. Was too focused looking at the Symbols xD

from undici.

juliusmarminge avatar juliusmarminge commented on July 17, 2024

Checked some other runtimes:

CleanShot 2024-05-16 at 13 04 57

CleanShot 2024-05-16 at 13 04 17

from undici.

Related Issues (20)

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.