0

标题简单地说。我不知道如何发送几个字段小瓶多部分。

我了解https://github.com/felixge/node-form-data有一个实现

我有所有可用的字段,只是将其作为多部分发布并使用异步结果...

对于任何比作者 github 页面(https://github.com/mikeal/request)上的更好或更清晰的示例,这将是非常棒的......

谢谢

4

1 回答 1

0

您是否在node-form-data末尾看到以下内容?

“为了将此表单提交到 Web 应用程序,您可以使用 node 的 http 客户端接口:”

var http = require('http');

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

form.pipe(request);

request.on('response', function(res) {
  // work with the result here
  console.log(res.statusCode);
});

它完全符合您的要求。

于 2012-10-27T15:23:07.693 回答