0
在此頁面上的說明:如何「超載」websocket?
https://github.com/FreakDev/PhoneGap-Android-HTML5-WebSocket
它規定:在JavaScript中,創建一個新的WebSocket,和過載的方法 '的onMessage', '的OnOpen', '的onerror', '的onclick';
這是什麼意思..
在此頁面上的說明:如何「超載」websocket?
https://github.com/FreakDev/PhoneGap-Android-HTML5-WebSocket
它規定:在JavaScript中,創建一個新的WebSocket,和過載的方法 '的onMessage', '的OnOpen', '的onerror', '的onclick';
這是什麼意思..
如果你看看他們的javascript文件,你可以看到他們設置:
// listener to overload
this.onopen = null;
this.onmessage = null;
this.onerror = null;
this.onclose = null;
你應該設置這些是你想被稱爲實現。例如。
their_object.onopen = function (openObject) {
// Your code here.
}