时间:2021-07-01 10:21:17 帮助过:377人阅读
本文实例讲述了nodejs使用http模块发送get与post请求的方法。分享给大家供大家参考,具体如下:
GET请求
var http = require('http');
var querystring = require('querystring');
var data = {
a: 123,
time: new Date().getTime()};//这是需要提交的数据
var content = querystring.stringify(data);
var options = {
hostname: '127.0.0.1',
port: 3000,
path: '/pay/pay_callback?' + content,
method: 'GET'
};
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);
});
req.end();POST请求
var http = require('http');
var querystring = require('querystring');
var post_data = {
a: 123,
time: new Date().getTime()};//这是需要提交的数据
var content = querystring.stringify(post_data);
var options = {
hostname: '127.0.0.1',
port: 3000,
path: '/pay/pay_callback',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
}
};
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);
//JSON.parse(chunk)
});
});
req.on('error', function (e) {
console.log('problem with request: ' + e.message);
});
// write data to request body
req.write(content);
req.end();上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
详细解答Webpack+Babel+React环境搭建(详细教程)
详细解读webpack babel的相关配置(详细教程)
使用webpack+vue2进行项目构建
在webpack中有关vue项目资源文件报404问题(详细教程)
在vue.js中整合vux如何实现上拉加载下拉刷新
以上就是通过nodejs使用http模块发送请求(详细教程)的详细内容,更多请关注Gxl网其它相关文章!