node.js 的request-promise模块怎么发送带参数的POST请求
展开全部
var opt = {
host:'localhost',
port:'8888',
method:'POST',
path:'/getTicket',
headers:{
}
}
var body = '';
var req = http.request(opt, function(res) {
console.log("Got response: " + res.statusCode);
res.on('data',function(d){
body += d;
}).on('end', function(){
console.log(res.headers)
console.log(body)
});
}).on('error', function(e) {
console.log("Got error: " + e.message);
})
req.end();
req.end()之前加上:data = {user:"hello",password:"world"};
req.write(require('querystring').stringify(data));
host:'localhost',
port:'8888',
method:'POST',
path:'/getTicket',
headers:{
}
}
var body = '';
var req = http.request(opt, function(res) {
console.log("Got response: " + res.statusCode);
res.on('data',function(d){
body += d;
}).on('end', function(){
console.log(res.headers)
console.log(body)
});
}).on('error', function(e) {
console.log("Got error: " + e.message);
})
req.end();
req.end()之前加上:data = {user:"hello",password:"world"};
req.write(require('querystring').stringify(data));
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询