首页 > 微信 > 详细

微信小程序音频播放

时间:2021-07-20 23:21:50      阅读:36      评论:0      收藏:0      [点我收藏+]

微信小程序音频播放

// 开启播放音频
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)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!