- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我是 socket.io 的新手,遇到了一些看起来很奇怪的事情。我实际上不知道 socket.emit
和 io.emit
之间的区别,但我在任何地方都找不到解释。
io.on('connection', function(socket){
io.emit('connected') // <<<< HERE >> socket.emit('connected');
socket.on('disconnect', function(){
io.emit('disconnect')
});
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});
server.listen(3000);
这是我的服务器内容,但是当我将 io
更改为 socket
时,该消息仅在连接的用户连接时才会显示。 io.emit
将消息发送给所有用户。
也许它应该是那样的,或者它只是一些可怕的黑客行为?如果您需要客户端 HTML,请告诉我。
最佳答案
这是一个补充文档供引用:
socket.emit('message', "this is a test"); //sending to sender-client only
socket.broadcast.emit('message', "this is a test"); //sending to all clients except sender
socket.broadcast.to('game').emit('message', 'nice game'); //sending to all clients in 'game' room(channel) except sender
socket.to('game').emit('message', 'enjoy the game'); //sending to sender client, only if they are in 'game' room(channel)
socket.broadcast.to(socketid).emit('message', 'for your eyes only'); //sending to individual socketid
io.emit('message', "this is a test"); //sending to all clients, include sender
io.in('game').emit('message', 'cool game'); //sending to all clients in 'game' room(channel), include sender
io.of('myNamespace').emit('message', 'gg'); //sending to all clients in namespace 'myNamespace', include sender
socket.emit(); //send to all connected clients
socket.broadcast.emit(); //send to all connected clients except the one that sent the message
socket.on(); //event listener, can be called on client to execute on server
io.sockets.socket(); //for emiting to specific clients
io.sockets.emit(); //send to all connected clients (same as socket.emit)
io.sockets.on() ; //initial connection from a client.
希望这会有所帮助!
编辑:socket.io 文档也包含类似的 cheatsheet .
关于javascript - io.emit 与 socket.emit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32674391/
我只是偶然发现了一个似乎广为人知的compsci关键字“emit”。但是我找不到用通用计算机科学术语对其的任何明确定义,也找不到任何特定编程语言中的“emit()”函数或关键字的特定定义。 我在这里找
在 Qt 中,它们都是有效的,并且表现相同: emit someSignal(value); 对比 emit(someSignal(value)); 有什么区别吗? 最佳答案 Is there any
是否可以同步执行并在调用方法本身时返回结果。所以,我想在 $emit 完成后执行下一条语句。其如下: Parent component has method, doC
我是 socket.io 的新手,遇到了一些看起来很奇怪的事情。我实际上不知道 socket.emit 和 io.emit 之间的区别,但我在任何地方都找不到解释。 io.on('connection
有谁知道如何显式实现接口(interface)的属性 使用反射。发射? 最佳答案 有关 TypeBuilder.DefineMethodOverride 的信息,请参阅 MSDN 文档,其中包括使用
我有多个可观察对象进行网络调用,并且仅当所有可观察对象发出错误时,我才需要从组合器可观察对象发出错误。如果至少有一个可观察完成,则应传递结果。 我当前的流功能如下: Observable.fromIt
我想在这里实现的是当 IF 语句为 true 时 fightID 更改为其他值,因此它不会匹配它之前分配的值,因此我无法在战斗结束后立即通过控制台运行 win-fight 发出的消息。但是我现在得到的
当我们需要自定义组件在 VueTable2 中发出事件时,我们必须使用: this.$parent.$emit('myCustomEvent') // instead of this.$emit('m
This is my production webpack config .标题中的两个引号分别指的是 webpack2 和 webpack。两者都因类似的错误而挂起。 这是我触发构建的命令 设置 N
我正在尝试构建一个发布者,它会在其他 5 个发布者中的任何一个发布者发出 true 时发出 true。我已经设法构建了一个工作版本,但感觉非常恶心,使用 CombineLatest4 + Combin
我正在尝试创建用于教育目的的简单 .net 编译器。在解析、扫描和构建 AST 之后,我正在使用 Reflection.Emit.ILGenerator 生成 .net 程序集。 这是我的程序集生成示
以下 node.js 脚本不工作 var EventEmitter = require('events').EventEmitter; var util = require('util'); var
我使用的是Laravel 10,Livewire 2.x,我试图使用Livewire组件中的一个简单函数中的emit或emitTo事件来更新愿望列表计数。。WishlistCount控制器:。当我运行
我收到以下警告: [Vue warn]: Extraneous non-emits event listeners (addData) were passed to component but cou
我不明白 io.emit 和 io.sockets.emit 之间有什么区别。 有时它们的行为相同,但有时它们的行为不同。 最佳答案 socket.emit 仅将消息发送到发送者客户端 io.emit
我刚刚成功地使用 socket.io 连接到一个服务器脚本,所以我很高兴。我对我的脚本生成的奇怪行为不太满意:我在单击按钮时向服务器脚本发送一个发射,然后服务器测试脚本向控制台日志发回一条消息 6x。
这听起来可能有点模糊,但我仍在学习并试图理解它是如何工作的。 我开始使用“侧菜单”启动 ionic 项目,它已经设置了带有“应用程序”抽象状态/ View / Controller 的 urlrout
我遵循了一些 Nodejs 教程并完成了一个简单的 REST Web 服务。此 Web 服务监听/api/accounts 中的电子邮件和密码,然后继续在 Cassandra 集群中进行查找。我使用
我正在尝试建立一种模式,在这种模式下,我的产生某些对象的可观察对象被转换为领域事件,例如围绕可观察对象产生的 Started、Success、Error,如果这有意义的话 public Observa
这个问题已经有答案了: How can I let the javascript catch a signal from node and prompt a window right after th
我是一名优秀的程序员,十分优秀!