node.js中post方法

//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();  

    A+
发布日期:2016年08月01日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: