nodejs / express:如何使用数据POST到外部表单?

时间:2012-07-04 10:24:05

标签: node.js post websocket express

在构建包含要发布到表单的数据的字符串后,如何使用nodejs和expressjs对另一个站点上的外部公共表单进行POST?

我找不到一个简单的示例或文档,只是继续找到如何处理和解析POST到您自己的应用程序中的表单。

3 个答案:

答案 0 :(得分:6)

Node.js使这很简单,并且在他们的官方文档中。

http://nodejs.org/api/http.html#http_http_request_options_callback

var options = {
  host: 'www.google.com',
  port: 80,
  path: '/upload',
  method: 'POST'
};

var req = http.request(options, function(res) {
  console.log('STATUS: ' + res.statusCode);
  console.log('HEADERS: ' + JSON.stringify(res.headers));
  res.setEncoding('utf8');
  res.on('data', function (chunk) {
    console.log('BODY: ' + chunk);
  });
});

req.on('error', function(e) {
  console.log('problem with request: ' + e.message);
});

// write data to request body
req.write('data\n');
req.write('data\n');
req.end();

答案 1 :(得分:0)

由于问题提交表单,我认为格式请求体也是一个问题。你可以自己编码你的表格;但为方便起见,也使用其他库。

https://github.com/mikeal/request/非常好用。

答案 2 :(得分:0)

我使用needle

var needle = require('needle');

needle.post(fullUrl, {
        query : query,
        maxRows : maxRows,
        format : resultsFormat
    }, function(err, response, body)
    {
        if(!err && response.statusCode == 200)
        {
            ///code here
        }
    });