如何使用socket.io从客户端获取更多数据

时间:2014-09-07 00:03:03

标签: javascript node.js sockets

在node.js中的

我想从客户端获取localStorage数据,并希望在index.html文件中使用这些数据。任何想法?

io.sockets.on('connection', function(client){

// when a message comes in from a client, re-emit it from the server to client(s)
client.on('message:client', function(data) {
    client.broadcast.emit('message:server', {message: data.message});
});

我有一个索引html页面,我希望当用户打开它时,它只是从localStorage从该客户端的浏览器中获取值,当他发出消息时(通过使用node.js聊天服务器),这里我希望他发出/ bradcast该消息具有localStorage值,因此每个人都可以在index.html页面上看到他们的localStorage值。那么我应该将哪些代码添加到服务器端以及客户端呢?

0 个答案:

没有答案