uniapp 解决开发h5在微信浏览器打开video无法自动播放问题

1:将video自动播放置为false

2:在data中定义

data() {
			return {
				
				videoContext:null
			};
		},

3:在onReady中创建一个视频对象

onReady() {
			this.videoContext = uni.createVideoContext('videoPlayer', this);
		},

4:在接口返回成功后调用

uniapp 解决开发h5在微信浏览器打开video无法自动播放问题_第1张图片

当然了,得加上nextTick

this.$nextTick(()=>{
						this.videoContext.play()
					})

 

你可能感兴趣的:(uni-app,前端)