Node.js:如何使用请求模块发送带有表单数据的标头?


111

我有如下代码:

var req = require('request');

req.post('someUrl',
   { form: { username: 'user', password: '', opaque: 'someValue', logintype: '1'}, },
   function (e, r, body) {
      console.log(body);
});

如何为此设置标题?我需要用户代理,内容类型以及标题中可能包含的其他内容:

headers = { 
   'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36',
   'Content-Type' : 'application/x-www-form-urlencoded' 
};

我已经尝试了多种方式,但是我可以发送标头或表单数据,但均不能发送。

Answers:


194

我终于设法做到了。在下面的代码段中回答:

var querystring = require('querystring');
var request = require('request');

var form = {
    username: 'usr',
    password: 'pwd',
    opaque: 'opaque',
    logintype: '1'
};

var formData = querystring.stringify(form);
var contentLength = formData.length;

request({
    headers: {
      'Content-Length': contentLength,
      'Content-Type': 'application/x-www-form-urlencoded'
    },
    uri: 'http://myUrl',
    body: formData,
    method: 'POST'
  }, function (err, res, body) {
    //it works!
  });

抛出新错误(“未定义不是有效的uri或选项对象。”)^错误:未定义不是有效的uri或选项对象。根据请求(C:\ Users \ pjt \ node_modules \ request \ index.js:44:11)在Request._callback(C:\ Users \ pjt \ routes \ payment.js:170:11) (C:\ Users \ pjt \ node_modules \ request \ request.js:186:22)在Request.emit(events.js:194:7)在发光二级(events.js:194:7)在请求。<匿名> (C:\ Users \ pjt \ node_modules \ request \ request.js:1163:10)在Request.emit(events.js:191:7)的emitOne(events.js:96:13)
Tamilselvan K

这对我不起作用,下面的答案只是设置了一个对象以形成表单。
ozzieisaacs

49

这应该工作。

var url = 'http://<your_url_here>';
var headers = { 
    'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0',
    'Content-Type' : 'application/x-www-form-urlencoded' 
};
var form = { username: 'user', password: '', opaque: 'someValue', logintype: '1'};

request.post({ url: url, form: form, headers: headers }, function (e, r, body) {
    // your callback body
});

谢谢,但是在这种情况下,表单数据没有以正确的方式发送。我在.Net中具有几乎相同的代码,并且万一发送了表单数据,我体内不应有登录表单,而应具有令牌。我会尽快将其张贴在这里,可能会有所帮助
Mykola G.

17

我认为这仅仅是因为您忘记了HTTP METHOD。请求的默认HTTP方法是GET。

您应该添加,method: 'POST'并且如果后端收到post方法,您的代码将可以使用。

var req = require('request');

req.post({
   url: 'someUrl',
   form: { username: 'user', password: '', opaque: 'someValue', logintype: '1'},
   headers: { 
      'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36',
      'Content-Type' : 'application/x-www-form-urlencoded' 
   },
   method: 'POST'
  },

  function (e, r, body) {
      console.log(body);
  });

1
这是一个更好的答案,因为它不依赖于字符串化,因此更易于阅读。
基思·约翰·哈奇森

6

我找到了这个问题的解决方案,我应该工作,因为我也面临着同样的问题,我对此感到确定

这是我的解决方案----->

var request = require('request');

//set url
var url = 'http://localhost:8088/example';

//set header
var headers = {
    'Authorization': 'Your authorization'
};

//set form data
var form = {first_name: first_name, last_name: last_name};

//set request parameter
request.post({headers: headers, url: url, form: form, method: 'POST'}, function (e, r, body) {

    var bodyValues = JSON.parse(body);
    res.send(bodyValues);
});

1
我编辑了我的答案,请查看然后说出是否有任何问题。谢谢
Chetna Joshi

您的答案是正确的,对我也有帮助,但是请尝试实施仅说明解决方案的短代码
Amy19年

2

只要记住在选项中将方法设置为POST即可。这是我的代码

var options = {
    url: 'http://www.example.com',
    method: 'POST', // Don't forget this line
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'X-MicrosoftAjax': 'Delta=true', // blah, blah, blah...
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',
    },
    form: {
        'key-1':'value-1',
        'key-2':'value-2',
        ...
    }
};

//console.log('options:', options);

// Create request to get data
request(options, (err, response, body) => {
    if (err) {
        //console.log(err);
    } else {
        console.log('body:', body);
    }
});
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.