扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
var http = require('http'); var querystring = require('querystring'); // 请求参数 var postData = querystring.stringify({ 'name': "wangbin", 'password': "123456", 'serverId': 2 }); var options = { hostname: '192.168.1.135', port: 3001, path: '/login', method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Content-Length': postData.length } }; var req = http.request(options, function(res) { res.setEncoding('utf8'); var resData = []; res.on('data', function (chunk) { resData.push(chunk); }); res.on('end', function() { var data = resData.join(""); console.log(data); }) }); req.on('error', function(e) { console.log('problem with request: ' + e.message); }); // 发送请求 req.write(postData); req.end();
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流