socket.io 消息不是广播机制

背景

以为websocket server 的信息是广播给所有的websocket client 的,但是后续发现当一个client 发起一个操作,然后emit 一个message, 这个时间在所有client 端都有监听,但是只有发起的client 端才能接受到这个emitted msg, 而不是我之前想的,所有监听这个时间的client 都能收到。

环境

frontend项目中安装了socket.io-client

javascript 复制代码
import { Socket, io } from 'socket.io-client';
private socketUrl = 'ws://localhost:3000';
private currentSocket = io(this.socketUrl);

ngOnInit() {
    this.currentSocket.on('news', (result) => {
      console.log(`latest news`, result.data);
    });
  }

backend server 中安装了socket.io, 提供websocket 连接。

javascript 复制代码
import { createServer } from 'http';
import { Server } from 'socket.io';

const socketMessageIds = {
  on: {
    getNews: 'getNews',
    addNew: 'addNew',
  },
  emit: {
    news: 'news'
  }
};

function getSuccessResponse(message, data = null) {
  return {
    code: 2000,
    data,
    msg: String(message || '')
  };
}
function getErrorResponse(message, code = -1) {
  return {
    code,
    data: null,
    msg: String(message || '')
  };
}

const httpServer = createServer();
const io = new Server(httpServer, {
  cors: {
    origin: '*'
  }
});
httpServer.listen(3000);

const news = [];

io.on('connection', (socket) => {

  socket.on(socketMessageIds.on.getNews, () => {
    socket.emit(
      socketMessageIds.emit.news,
      getSuccessResponse('send msg successfully~', news)
    );
  });
  
  socket.on(socketMessageIds.on.addNew, (arg: string) => {
    news.push(arg);
    socket.emit(
      socketMessageIds.emit.news,
      getSuccessResponse('send msg successfully~', news)
    );
  });

}
});

另外启动了一个socket.io-client 进程

javascript 复制代码
import { io  } from 'socket.io-client';

const socket = io('ws://localhost:3000');

socket.on('disconnected', () => {
  console.log('disconnected with server');
})

socket.on('connect', () => {

  socket.emit('addNew', 'dongyuhui is the new VP of dongfang zhenxuan' , (res) => {
    console.log(`latest news`, res.data);
  });

  socket.on('news', (res) => {
    console.log('latest news: ', res.data);
	});
});
相关推荐
林涧泣8 分钟前
【Uniapp-Vue3】下拉刷新
前端·vue.js·uni-app
luoganttcc1 小时前
华为升腾算子开发(一) helloword
java·前端·华为
九月十九2 小时前
AviatorScript用法
java·服务器·前端
_.Switch3 小时前
Python Web开发:使用FastAPI构建视频流媒体平台
开发语言·前端·python·微服务·架构·fastapi·媒体
菜鸟阿康学习编程3 小时前
JavaWeb 学习笔记 XML 和 Json 篇 | 020
xml·java·前端
索然无味io4 小时前
XML外部实体注入--漏洞利用
xml·前端·笔记·学习·web安全·网络安全·php
ThomasChan1234 小时前
Typescript 多个泛型参数详细解读
前端·javascript·vue.js·typescript·vue·reactjs·js
爱学习的狮王4 小时前
ubuntu18.04安装nvm管理本机node和npm
前端·npm·node.js·nvm
东锋1.34 小时前
使用 F12 查看 Network 及数据格式
前端
zhanggongzichu4 小时前
npm常用命令
前端·npm·node.js