Git Product home page Git Product logo

Comments (5)

alexindigo avatar alexindigo commented on July 20, 2024

Hey, can you show me code examples you're trying to run? Thank you.

from form-data.

rodrigok avatar rodrigok commented on July 20, 2024

Of course I can.

So, I am using MeteorJS and I am using JavaScript FileReader API to read the file at the client side and then send it to the server via websockets.

My client side:

fileInput = $form.find('input[type=file]')[0]
if fileInput.files.length > 0
    file = fileInput.files[0]

fileReader = new FileReader
fileReader.onload = (e) ->
    formData.curriculum = 
        fileInfo: file
        fileData: e.srcElement.result

    Meteor.call 'workWithUs', formData, (err) ->
        #...
fileReader.readAsBinaryString file

At my server side I am trying to get this data and send to another server, file server (nodejs too).
I am using module request to send this request:

options =
    url: "http://url.to.upload"
    headers:
        'Cookie': '...'
        'X-File-Name': formData.curriculum.fileInfo.name

req = request.post options, (err, httpResponse, body) ->
    console.log arguments
    return callback err

form = req.form()

form.append 'file', formData.curriculum.fileData,
    filename: formData.curriculum.fileInfo.name
    contentType: formData.curriculum.fileInfo.type
    knownLength: formData.curriculum.fileInfo.size

But my file server does not know how to handle this file data because there are no information about file data encoding and I can't set this header easily without editing your code.

Thanks.

from form-data.

DylanPiercey avatar DylanPiercey commented on July 20, 2024

@rodrigok what header are you trying to set and what would be your expected (example) output formdata string?

from form-data.

rodrigok avatar rodrigok commented on July 20, 2024

@DylanPiercey, sorry I can't remember, was 1 year ago :(

from form-data.

alexindigo avatar alexindigo commented on July 20, 2024

Ok, let us know if you have further questions. Closing.

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.