收藏
回答

websocket.onopen 回调参数event为undefined

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小游戏 Bug websocket 微信安卓客户端 7.0.7 2.10.1

connect() {

            this.socket = new WebSocket(this.url + ":" + this.port);

            this.socket.binaryType = "arraybuffer";

            this.socket.onopen = this.onOpen.bind(this);

            this.socket.onmessage = this.onMessage.bind(this);

            this.socket.onclose = this.onClose.bind(this);

            this.socket.onerror = this.onError.bind(this);

    }

onOpen(event) {

        console.error(event); //event is undefined

    }


回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签