フォームに POST したいデータで文字列を作成した後、nodejs と expressjs を使用して別のサイトの外部パブリック フォームに POST を実行するにはどうすればよいですか?
これに関する簡単な例やドキュメントは見つかりません。独自のアプリ内のフォームへの POST を処理および解析する方法を見つけ続けるだけです。
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();
フォームの提出について質問があるので、リクエスト本文のフォーマットも問題になると思いました。フォームを自分でエンコードできます。ただし、便宜上、他のライブラリも使用してください。
https://github.com/mikeal/request/は、非常に使いやすい優れたものです。
私は針を使用します:
var needle = require('needle');
needle.post(fullUrl, {
query : query,
maxRows : maxRows,
format : resultsFormat
}, function(err, response, body)
{
if(!err && response.statusCode == 200)
{
///code here
}
});