Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getHeaders should add content length if known #534

Open
wmertens opened this issue Apr 29, 2022 · 1 comment
Open

getHeaders should add content length if known #534

wmertens opened this issue Apr 29, 2022 · 1 comment

Comments

@wmertens
Copy link

If all the form data has known lengths, it would be nice if getHeaders() automatically included the Content-Length header.

@XenoBino
Copy link

XenoBino commented Apr 30, 2022

Until it's supported, use:

const formData = new FormData();
// ...
const buffer = formData.getBuffer();

// or axios, or whatever
fetch(url, {
  headers: {
    ..formData.getHeaders(),
    "Content-Length": buffer.byteLength.toString()
  },
  body: buffer
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants