Socket.io how to send JavaScript object

2019-03-14 17:13发布

How to send JavaScript Object with Socket.io from server to client? I'm using Socket.io as WebSocket(sending with .send() and listen with message event). When I'm trying to do something like on server-side:

var myObject = {
    message: 'Hello World!'
}

socket.send(myObject);

on client-side I'm getting only this String: [object Object]

4条回答
闹够了就滚
2楼-- · 2019-03-14 17:59

I just ran into this issue using some older example. Here is the answer I found: Migrating 0.6 to 0.7+, which I reproduce below.


In v0.6, socket.send would automatically convert an object like {a: 'b'} to JSON. You would send data to a client with:

socket.send({a: 'b'});

While this is cool, it poses a fundamental problem. JSON not only encodes objects, but also strings, numbers, etc! So, the API is more clear if you explicitly state you want to pass JSON (since there's a performance penalty associated with encoding/decoding JSON).

In v0.7, use the json flag:

socket.json.send({a: 'b'});

Now you can also emit and receive custom events between the browser and server:

socket.emit('my_event', {a: 'b'});

Arguments for events get encoded in JSON automatically for you.

查看更多
Evening l夕情丶
3楼-- · 2019-03-14 18:00

You actually need to emit an event instead:

 socket.emit('yourEvent', myObject);

If you use .send(), you are simply sending the string representation of your object, which is where the problem is occurring. Note that you can use .send(), but you would have to JSON-encode the object first, and decode it on reception.

Unless you have a specific reason, it's best to use the standard Socket.IO .emit() method, as it does all of this for you. That's what it is there for.

查看更多
Fickle 薄情
4楼-- · 2019-03-14 18:05

Try using this on your server-side

socket.json.send({ your : 'data' });

and the JSON.parse() method on your client-side.

查看更多
【Aperson】
5楼-- · 2019-03-14 18:07

socket.send() doesn't understand object but it enjoys with JSON. You can use this way:

socket.send(JSON.stringify(myObject));

And use JSON.parse(json) to parse JSON to Object.

查看更多
登录 后发表回答