我看到了连接,我看到Chrome控制台中我的前端通过socket.io库从服务器获取的数据,但前端应用程序中没有JS事件。我的语法出了什么问题?
this.socket = io(
'wss://some-url.com',
{
path,// URL segment
transports: [ 'websocket' ],
reconnection: false
}
);
this.socket.on('connect', () => {
console.info('SocketService->onconnect');
});
this.socket.on('message', (message: string) => {
console.info('SocketService->onmessage', message);
});