如何获取Socket.Io消息长度(字符数nb)

时间:2014-10-04 17:18:06

标签: node.js sockets

我必须获得套接字io消息长度(变量)

我尝试使用此代码但不起作用。

socket.on('message', function (message) {
   var messagelength = message.length; // This variable must contain the number of chars in the string.
});

此错误不能落后,因为我可以正确显示此变量。

抱歉我的英语不好。

1 个答案:

答案 0 :(得分:0)

我说你的消息是一个没有长度参数的对象或其他类型。

尝试:

socket.on('message', function (message) {
   var messagelength = message.toString().length; // or if message is JSON, use JSON.stringify(message).length
});