作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Angular 应用程序需要订阅 Websocket 以获取传入数据。
从 Angular 来看,在我提供的服务中
setContextChannel(channel) {
this.contextWS = new WebSocket(channel);
that = this;
this.contextWS.onmessage = function(event) {
console.log('ws', event.data);
that.patientID = event.data;
};
this.contextWS.onerror = function(event) {
console.log('ws error', event);
}
}
在模拟服务器端,我有一个 typescript Node 服务器,它创建套接字,如下所示:
import {Server} from "ws";
var wsServer: Server = new Server({port: 8085});
console.log('ws on 8085');
wsServer.on('connection',websocket => websocket.send('first pushed message'));//////
我的问题是如何使用wsServer发送消息?
最佳答案
不知道你想问什么。这行是正确的:
wsServer.on('connection',websocket => websocket.send('first pushed message'));
如果您想继续向所有连接的客户端发送消息,则需要使用属性 wsServer.clients 向每个连接的客户端发送消息,或者存储对每个连接的客户端的引用(websocket
代码中的变量)放入数组中,然后使用 forEach() 将消息发送到每个客户端。
关于javascript - 如何在 TypeScript WebSocket 上发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43380925/
我是一名优秀的程序员,十分优秀!