我使用javascript和Play Framework连接到WebSocket服务器。我只是无法理解使用WebSocket的websocket.send()方法的正确方法。
$(function() {
//depending on the browser we have to use WebSocket or MozWebSocket
var WS = window['MozWebSocket'] ? MozWebSocket : WebSocket;
var websocket = new WS('ws://localhost:9000/webSocket');
websocket.onopen = function() {
websocket.send('test');
}
//split the message from the websocket into type, user and text
//uses a nifty regular expression
websocket.onmessage = function (event) {
$('.output').append(event.data);
}
});
当我在send()
事件之外使用onopen
时,我收到错误,因为send()
不可用。我只是想在没有send()
事件的情况下动态执行onopen
必须有另一个事件,而afaik只在连接打开时执行。
谢谢!
答案 0 :(得分:1)