直接在路由中post不可以么? var options = { method: "POST", host : '127.0.0.1', port : 8888, path : '/yourUrl', headers: { 'Content-Type':'application/x-www-form-urlencoded' } }; var req = http.request(options, function(){ }); req.write(data); req.end();
直接在路由中post不可以么?