我想从客户端获取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值。那么我应该将哪些代码添加到服务器端以及客户端呢?