node js 从 tcp socket net.createServer 读取特定消息


var net = require('net');
var HOST = '0.0.0.0';
var PORT = 5000;
// Create a server instance, and chain the listen function to it
// The function passed to net.createServer() becomes the event handler for the 'connection' event
// The sock object the callback function receives UNIQUE for each connection
net.createServer(function(sock) {
// We have a connection - a socket object is assigned to the connection automatically
console.log('CONNECTED: ' + sock.remoteAddress +':'+ sock.remotePort);
// Add a 'data' event handler to this instance of socket
sock.on('data', function(data) {
    console.log('DATA ' + sock.remoteAddress + ': ' + data);
    // Write the data back to the socket, the client will receive it as data from the server
    if (data === "exit") {
        console.log('exit message received !')
    }
});
// Add a 'close' event handler to this instance of socket
sock.on('close', function(data) {
    console.log('CLOSED: ' + sock.remoteAddress +' '+ sock.remotePort);
});
}).listen(PORT, HOST);
console.log('Server listening on ' + HOST +':'+ PORT);

无论我尝试什么,我都无法得到:

    if (data === "exit") {
        console.log('exit message received !')
    }

工作,总是假的。

我通过telnet连接并发送"exit",然后服务器应该进入"if"循环并说"收到退出消息"。这永远不会发生,有人可以透露一些信息吗?谢谢

这是因为数据不是字符串,如果您尝试与 === 进行比较,您将得到 false,因为类型不匹配。要解决这个问题,您应该将数据对象与简单的 == 进行比较,或者在绑定数据事件之前使用 socket.setEncoding('utf8')。

https://nodejs.org/api/net.html#net_event_data

var net = require('net');
var HOST = '0.0.0.0';
var PORT = 5000;
net.createServer(function(sock) {
    console.log('CONNECTED:',sock.remoteAddress,':',sock.remotePort);
    sock.setEncoding("utf8"); //set data encoding (either 'ascii', 'utf8', or 'base64')
    sock.on('data', function(data) {
        console.log('DATA',sock.remoteAddress,': ',data,typeof data,"===",typeof "exit");
        if(data === "exit") console.log('exit message received !');
    });
}).listen(PORT, HOST, function() {
    console.log("server accepting connections");
});

注意。 如果接收到的数据很大,则应在数据末尾连接并处理消息比较。检查其他问题以处理这些情况:

节点.js网络库:从"数据"事件中获取完整数据

我知道

这是一个相当古老的帖子,当我尝试在这个问题的答案中实现代码时,无论使用"=="还是utf8编码,我都遇到了同样的问题。对我来说,问题是我使用的客户端在退出消息的末尾附加了一个""字符,从而导致服务器上的字符串比较失败。也许这不是telnet等的问题,但netcat就是这种情况。希望这能为遇到这篇文章并遇到与我相同的问题的其他任何人提供一些启发。

最新更新