admin管理员组文章数量:1352026
I have a node/ws WebSocket server listening for messages on a Redis backplane, and then forwards it on to any client that is listening:
sub.on("message", function(channel, message) {
console.log('received message from redis: ' + message);
console.log('message is type ' + typeof(message));
var stringified = JSON.stringify(message);
console.log('stringified is type ' + typeof(stringified));
wss.clients.forEach(function each(client) {
client.send(stringified);
});
});
message
is a JSON object. The log output is:
received message from redis: {"temp":81}
message is type object
stringified is type string
On the client, I have:
socket.onmessage = function(e) {
console.log(e.data)
...
};
The log output is:
{"type":"Buffer","data":[123,34,116,101,109,112,34,58,53,52,125]}
Why am I not receiving a string?
If on the server I hardcode:
client.send('foobar');
then the client code will log out:
foobar
I have a node/ws WebSocket server listening for messages on a Redis backplane, and then forwards it on to any client that is listening:
sub.on("message", function(channel, message) {
console.log('received message from redis: ' + message);
console.log('message is type ' + typeof(message));
var stringified = JSON.stringify(message);
console.log('stringified is type ' + typeof(stringified));
wss.clients.forEach(function each(client) {
client.send(stringified);
});
});
message
is a JSON object. The log output is:
received message from redis: {"temp":81}
message is type object
stringified is type string
On the client, I have:
socket.onmessage = function(e) {
console.log(e.data)
...
};
The log output is:
{"type":"Buffer","data":[123,34,116,101,109,112,34,58,53,52,125]}
Why am I not receiving a string?
If on the server I hardcode:
client.send('foobar');
then the client code will log out:
Share Improve this question edited Dec 26, 2016 at 20:11 Mister Epic asked Dec 26, 2016 at 19:57 Mister EpicMister Epic 16.7k13 gold badges86 silver badges155 bronze badges 4foobar
-
Your whole log output could be a JSON string. Try
console.log(typeof e.data)
in the client and see if it tells you it is a string. Also, please make the title of your question more meaningful. – jfriend00 Commented Dec 26, 2016 at 20:06 -
@jfriend00 Indeed
typeof e.data
is a string. I'm unclear how I should be processing this. Why the discrepancy between a stringified JSON object and a basic string? Cheers. – Mister Epic Commented Dec 26, 2016 at 20:13 -
My issue is
message
from Redis isn't a string, but when I callconsole.log('received message from redis: ' + message);
thentoString()
was being called implicitly. I was being lazy and didn't hook up a proper inspector soconsole.log
wasn't showing me what I needed to see. – Mister Epic Commented Dec 26, 2016 at 20:55 -
In the future, you can do:
console.log('received message from redis: ', message);
instead ofconsole.log('received message from redis: ' + message);
and you will see the whole object instead of only a.toString()
conversion. – jfriend00 Commented Dec 26, 2016 at 20:59
1 Answer
Reset to default 8This is due to the fact that any kind of socket-based munication in Node is based on Buffers (more precisely, on Unit8Array
, a kind of TypedArray).
You can safely call toString
on a Buffer to get a string, or use Streams to make any kind of desired transformations on received data.
Edit: BTW, when you try to console.log
a Buffer, it's toString
method will be called implicitly.
本文标签: javascriptWebSocket always sending stringified JSON object as bufferStack Overflow
版权声明:本文标题:javascript - WebSocket always sending stringified JSON object as buffer - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743907427a2559776.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论