如何處理node.js TCP服務器中的CONTROL+C
輸入?如何處理node.js中的CONTROL + C TCP服務器
var server = net.createServer(function(c) {
c.on('end', function() {
console.log('Client disconnected');
});
c.on('data', function(data) {
if (data == "CONTROL+C") { // Here is the check
c.destroy();
}
});
}).listen(8124);
有在這裏發表解決方案http://stackoverflow.com/questions/9199105/handling-ctrlc-event-in-node-js-on-windows – vinayr
這是不同的,我試圖解決這個在一個插座上。 – Mark
你在客戶端或服務器端按ctrl + c?更多細節請。 – vinayr