Giter VIP home page Giter VIP logo

Comments (4)

alexindigo avatar alexindigo commented on May 28, 2024

Where are you sending the file? FormData could be bent to send stream of data without final length, it's done using chunked encoding. But when I tested it, only node.js server were able to receive POST upload with chunked encoding. Otherwise you need to provide Content-Length header, so receiving end would accept it.

from form-data.

m1sta avatar m1sta commented on May 28, 2024

Thanks for the quick reply Alex.

I posted a request for help over at Busboy too. This was the developer's response

"There is no Content-Length for individual files/parts. That's what multipart is, parts separated by boundaries, not separated by pre-defined content lengths."

I'm sure that what I'm trying to do should be possible but I'm lost as to how to do it.

from form-data.

alexindigo avatar alexindigo commented on May 28, 2024

@m1sta looks like they confused multipart and chunked encoding. Former one allows to send different parts (pieces of the content with separate headers, content-types, etc), but you still need to provide content-length for the whole request – this is what FormData does. Latter allows to split request (multipart or not) into chunks (not necessary chunk per file/part, but more like streaming) and send request to the receiver without specifying total content-length, but rather prepend each chunk with it's own size.

Now the question is can the receiver end (server where you're trying to upload your stuff) understand (and accept) POST request with chunked encoding (many servers don't).

Do you have any simplified test you can share with me?
If I remember correctly FormData can send stuff out in chunked encoding without too many changes (if it's not already there), so it's matter of understanding what side is causing problems. :)

from form-data.

alexindigo avatar alexindigo commented on May 28, 2024

Because it's been a while, I'm going to close this pull request.
Please don't hesitate to continue discussion here whenever you have time.
Thank you.

from form-data.

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.