WebSocket聊天第3部分(使用Scala播放)



該視頻繼續了我們使用Play中的WebSockets編寫聊天應用程序的工作。

完整的播放列表,網址為https://www.youtube.com/playlist?list=PLLMXbkbDbVt8tBiGc1y69BZdG8at1D7ZF

1 comments
  1. socket.addEventListener('open', function (event) {
    socket.send('Hello Server!');
    });
    socket.onopen = function(event) {
    socket.send('Hello Server!');
    };
    'onopen' is a property not a method

Comments are closed.