VideoContext.play() 模拟器生效,预览生效,真机调试不生效。怎么解决?
videoContext.play() videoContext.pause() 开发者工具测试,预览都没有问题,手机真机调测无效,不能暂停和播放 this.data.swiperData.forEach((item, index, arr) => {
let VideoContext = wx.createVideoContext(String(index))
if(index==e.detail.current){
VideoContext.play()
}else{
VideoContext.pause()
}
})