原因:不管是移除还是暂停等等错误,都是组件切换的时候play是异步的过程,所以需要延时执行操作。
setTimeout(()=>{ this.videoContext.play() this.videoContext.seek(init_time) },500)
修复The play() request was interrupted等系列问题
风里来
最后,我终于解放了我自己……