我是 node.js 的新手,我正在尝试创建一个 http 服务器并生成一个子进程。
看代码
var server = http.createServer(function(req, res) {
res.writeHead(200);
switch(req.url) {
case '/vm/start':
req.on('data', function(data) {
console.log("hello");
console.log(data.toString());
exec('CALin.exe', function(err, data) {
console.log(err)
console.log(data.toString());
});
res.end('');
});
});
break;
}
});
server.listen(9090);
console.log("Server running on the port 9090");
当我尝试使用此 url 运行上述代码http://172.16.2.51:9090/vm/start
时,我什么也没得到。浏览器显示连接重置问题我不知道为什么会这样
node server.js
Server running on the port 9090