From 849541d6d9ceeb69dbc2e72eb0ee32702e6b1a7e Mon Sep 17 00:00:00 2001 From: hongqiongxing Date: Tue, 14 May 2024 21:18:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(xgplayer):=20onTimeupdate=E4=B8=ADAUTOPLAY?= =?UTF-8?q?=5FSTARTED=E7=9A=84=E8=A7=A6=E5=8F=91=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=88=A4=E6=96=AD=E4=B8=BAthis.state=20=3D=3D=3D=20STATES.NOTA?= =?UTF-8?q?LLOW;=202.=20startTime=E5=A4=84=E7=90=86=E6=94=BE=E5=9C=A8onLoa?= =?UTF-8?q?dedData=E4=B8=AD,=E4=BF=AE=E5=A4=8Dios=E4=B8=AD=E5=9C=A8duratio?= =?UTF-8?q?nchange=E4=BF=AE=E6=94=B9currentTime=E4=B9=8B=E5=90=8Etimeupdat?= =?UTF-8?q?e=E4=B8=8D=E8=A7=A6=E5=8F=91=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/xgplayer/src/player.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/packages/xgplayer/src/player.js b/packages/xgplayer/src/player.js index 3a48361c..93fe0206 100644 --- a/packages/xgplayer/src/player.js +++ b/packages/xgplayer/src/player.js @@ -1854,18 +1854,15 @@ class Player extends MediaProxy { this.waitTimer && Util.clearTimeout(this, this.waitTimer) } - onDurationchange () { + onLoadeddata () { + this.isError = false + this.isSeeking = false if (this.__startTime > 0 && this.duration > 0) { this.currentTime = this.__startTime this.__startTime = -1 } } - onLoadeddata () { - this.isError = false - this.isSeeking = false - } - onLoadstart () { this.removeClass(STATE_CLASS.ERROR) this.isCanplay = false @@ -1988,7 +1985,7 @@ class Player extends MediaProxy { } // 兼容safari在调整为静音之后未调用play自动起播问题 - if (!this.paused && this.state < STATES.RUNNING && this.duration) { + if (!this.paused && this.state === STATES.NOTALLOW && this.duration) { this.setState(STATES.RUNNING) this.emit(Events.AUTOPLAY_STARTED) }