node.js中post方法

发布时间:2016-08-01 13:35:34 阅读:837次
//http://qson.iteye.com/blog/2055523
var http = require('http');  
var qs = require('querystring');  
  
var post_data = {  
    name: 123,  
    time: new Date().getTime() };//这是需要提交的数据  
  
  
var content = qs.stringify(post_data);  
  
var options = {  
    hostname: 'bananapi.ittun.com',  
    port: 80,  
    path: '/http.php',  
    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);  
     });  
 });  
  
req.on('error', function (e) {  
    console.log('problem with request: ' + e.message);  
 });  
  
// write data to request body  
req.write(content);  
  
req.end();  

如有问题,可以QQ搜索群1028468525加入群聊,欢迎一起研究技术

支付宝 微信

有疑问联系站长,请联系QQ:QQ咨询
下一篇:node.js中restful

转载请注明:node.js中post方法 出自老鄢博客 | 欢迎分享