我想通过http.request();提交一个post到主机上,但是我的post是带有参数的,我该怎么设置参数尼? 我看了官方的例子:
var options = {
hostname: '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();
但是这个例子里面没有带参数的,如果是get的话直接拼接header,可是post该怎么处理传递参数??
4 回复
虽然我也新手,但post怎么是带参数呢。get和post的区别搞清楚,node里,post好像是可以用一个中间件来解析,否则你拿不到post的数据。 http.request为http的客户端请求方式,上面的options指定提交方式为post.
这次SB了,提过问题之后才想到在坛子里看看,坛子里面已经有人问过这个问题了,然后想删除这个帖子,结果二位的回复速度太快了,这里表示很感谢。虽然坛子里面有问过,但是你的这个http://stackoverflow.com/a/6158966/883571还是对我受益匪浅啊!感谢