在本页的说明中:
https://github.com/FreakDev/PhoneGap-Android-HTML5-WebSocket
它指出:在你的javascript中,创建一个新的WebSocket,并重载其方法'onmessage','onopen','onerror','onclick';
这是什么意思?..
答案 0 :(得分:1)
如果查看他们的javascript文件,您可以看到他们设置:
// listener to overload
this.onopen = null;
this.onmessage = null;
this.onerror = null;
this.onclose = null;
您应该将这些设置为您想要调用的实现。 E.g。
their_object.onopen = function (openObject) {
// Your code here.
}