uniapp 微信小程序 video 修复The play() request was interrupted等系列问题

VUE·前端 · 02-02

原因:不管是移除还是暂停等等错误,都是组件切换的时候play是异步的过程,所以需要延时执行操作。

setTimeout(()=>{
    this.videoContext.play()
    this.videoContext.seek(init_time)
},500)

修复The play() request was interrupted等系列问题

video uniapp
Theme Jasmine by Kent Liao