GithubHelp home page GithubHelp logo

Comments (3)

catamphetamine avatar catamphetamine commented on June 21, 2024 1

Fixed in react-pages: content-type not set explicitly and multipart/form-data has a boundary.

from react-pages.

catamphetamine avatar catamphetamine commented on June 21, 2024

Hmmm, good thoughts.

https://stackoverflow.com/questions/5661596/do-i-need-a-content-type-for-http-get-requests
Says:

It means that the Content-Type HTTP header should be set for PUT and POST requests.

At the same time, there's no prohibition of Content-Type on GET requests.
Still I guess setting Content-Type manually for GET requests could be removed from the code.
But if I changed that then it would be a breaking change.
We could add a flag for that, something like http.alwaysSetContentType: false.

I also googled this:
ladjs/superagent#1202

Never set Content-Type with multipart, as it erases the boundary argument that has to be set by the browser.

Also this:
ladjs/superagent#1152

In the browser version the boundary is set automatically by FormData element and we have no control over it.

And they also say:

You can either use your own content-type and your own payload with .send() / .set() OR you can let all of it being 100% auto-generated by the browser by using .attach() / .field(). They don't mix.

I guess .send(new FormData(...)) will have to be rewritten as .attach() / .field() (and then tested) and that would fix the FormData part.

So, the fix would mean:

  • Adding http.alwaysSetContentType: false flag.
  • Rewrite HttpRequest.js from sending FormData directly into using .attach() / .field() and then test that it works.

I can do that when I have some time for that.
In the meanwhile you can use your workaround in onRequest().

from react-pages.

beskacz avatar beskacz commented on June 21, 2024

Well, I am not a fan of adding another flag which will be true by default. It will be a breaking change to remove that chunk of code, but you can add a code snippet within the changelog how to set default ContentType if someone needs it:

  http: {
    onRequest: request => {
      if (!request.header['Content-Type']) {
        request.set('application/json');
      }
    },
  },

As to the FormData, the idea to use attach/field looks good, if you create a branch with a fix, I can check if it works.

Take your time, I can wait as I've got that workaround and it's not blocking me. I've created this issue especially that FormData looks to be broken.

Thanks for your time

from react-pages.

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.