Git Product home page Git Product logo

Comments (10)

alexindigo avatar alexindigo commented on July 19, 2024

Can you show me your "loop"? So I'd have some context on what you're trying to do. Thanx.

from form-data.

larsemann avatar larsemann commented on July 19, 2024

Hi, it worked in a different way. Now I just did it the old way:

var http = require('http');

var request = http.request({
method: 'post',
host: 'example.org',
path: '/upload',
headers: form.getHeaders()
});

form.pipe(request);
req.on('response', function(res) {
res.on('data', function(data) {
winston.info({"response": data});
});
req.end();
});

Is there a better way to do it?

from form-data.

alexindigo avatar alexindigo commented on July 19, 2024

It's hard to understand what is your goal and therefore hard to tell if there is "a better way to do it".

If you'd show your code, I'd be able to help you.

from form-data.

joanna0910 avatar joanna0910 commented on July 19, 2024

when i add request.end the upload does not seem to work. yesterday without request.end i was having socket hang up error. where do you suggest i place the request.end in a situation where there is file upload involved?

from form-data.

alexindigo avatar alexindigo commented on July 19, 2024

Try this snippet:

var FormData = require('form-data');
var fs = require('fs');

var form = new FormData();
form.append('my_field', 'my value');
form.append('my_file', fs.createReadStream('/foo/bar.jpg'));

form.submit('example.org/upload', function(err, res) {
  console.log(res.statusCode);
});

Or show your code which has failed
and I can tell you what's the problem.

from form-data.

joanna0910 avatar joanna0910 commented on July 19, 2024

oh okay will try this out. thanks!

from form-data.

alexindigo avatar alexindigo commented on July 19, 2024

Btw, what version of are you using?

from form-data.

joanna0910 avatar joanna0910 commented on July 19, 2024

node v0.10.5
form-data 0.0.8

from form-data.

alexindigo avatar alexindigo commented on July 19, 2024

Maybe it's the problem with hanging response, because of new streams?
Do you have data listener on the response? Or do you pipe it anywhere?

If not, try this one:

form.submit('example.org/upload', function(err, res) {
  console.log(res.statusCode);
  res.resume(); // <---- this one
});

from form-data.

alexindigo avatar alexindigo commented on July 19, 2024

I assume it's all fine now.
If you have further questions, you can ping me directly.

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.