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



