| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- var websocket = {
- sock: null,
- on_open: function () {
- this.send_data(JSON.stringify({
- stype: "auth",
- ctype: "login",
- data: {
- name: "TestUser",
- pwd: 123456
- }
- }));
- },
- on_message: function (event) {
- // console.log("client rcv data=" + event.data);
- this.host.updateMsg(event.data);
- },
- on_close: function () {
- this.close();
- },
- on_error: function () {
- this.close();
- },
- close: function () {
- if(this.sock){
- this.sock.close();
- this.sock = null;
- }
- },
- connect: function (url,host) {
- this.host = host;
- this.sock = new WebSocket(url);
- this.sock.binaryType = "arraybuffer";
- this.sock.onopen = this.on_open.bind(this);
- this.sock.onmessage = this.on_message.bind(this);
- this.sock.onclose = this.on_close.bind(this);
- this.sock.onerror = this.on_error.bind(this);
- },
- send_data: function (data) {
- this.sock.send(data);
- }
- };
- module.exports = websocket;
|