2

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

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

4

3 回答 3

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();
于 2012-07-04T10:39:18.880 回答
0

由于问题询问有关提交表单的问题,我认为格式化请求正文也是一个问题。您可以自己对表单进行编码;但也可以使用其他库为方便起见。

https://github.com/mikeal/request/是一个非常好用的好方法。

于 2012-07-05T03:57:52.917 回答
0

我用

var needle = require('needle');

needle.post(fullUrl, {
        query : query,
        maxRows : maxRows,
        format : resultsFormat
    }, function(err, response, body)
    {
        if(!err && response.statusCode == 200)
        {
            ///code here
        }
    });
于 2014-06-26T14:02:44.247 回答