获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 使用InnerAudioContext播放远端音乐文件时,在ios真机播放延迟过长?
进入场景后直接调用InnerAudioContext去播放远端音乐,在ios真机上会延迟十几秒才能播放出来,而andriod却可以直接播放。 在回调中打印时间戳发现,onWaiting和onCanplay的调用时间相差十几秒。
2020-07-06 - websocket.onopen 回调参数event为undefined
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 }
2020-02-10