随手记:小程序使用uni.createVideoContext视频无法触发播放
官方文档:
uni.createVideoContext(videoId, componentInstance) | uni-app官网
背景:
在小程序使用了uni.createVideoContext(videoId).play();但是视频无法触发播放,后续调研发现,需要再传入this:
解决办法:
传入this即可
uni.createVideoContext(videoId, this).play();