微信小程序音频播放

时间:2021-07-20 23:21:50   收藏:0   阅读:38

微信小程序音频播放

// 开启播放音频
startAudio(){
	const innerAudioContext = uni.createInnerAudioContext();//创建并返回内部 audio 
	innerAudioContext.autoplay = false;//不自动播放
	innerAudioContext.src =this.pageInfoBack.leaveReason;//音频的地址,不支持本地路径
	innerAudioContext.obeyMuteSwitch=false;//即使用户打开了静音开关,也能继续发出声音
	let self=this;
	innerAudioContext.play();	// 点击按钮音频开始播放事件
	self.isPlay=true;//显示播放图标
	innerAudioContext.onEnded(res=>{
		console.log("播放结束",res)
		self.isPlay=false;
	})
	innerAudioContext.onError(err=>{
		self.isPlay=false;
	})
},

原文:https://www.cnblogs.com/ishoulgodo/p/14931784.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!