uniapp 运行到H5或微信小程序,无法自动播放音频

文章介绍了如何在JavaScript中使用uni.createInnerAudioContext创建音频上下文,设置自动播放和循环播放功能,以及处理网络和本地路径的差异,还提及了播放和错误事件的监听。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

var that = this;
that.innerAudioContext = uni.createInnerAudioContext();
that.innerAudioContext.autoplay = true;//自动播放
that.innerAudioContext.loop = true; //循环播放
//只要音频路径是网络路径,基本上没啥问题了,本地路径好像就不行
that.innerAudioContext.src =  'http://xxx/audio.mp3';
				
that.innerAudioContext.volume = 0.8;
that.innerAudioContext.onPlay(() => {//可以播放事件
	console.log('开始播放');
	// that.playing = !innerAudioContext.paused;//查看是否可以自动播放
});
that.innerAudioContext.onError((res) => {
	onsole.log(res.errMsg);
	console.log(res.errCode);
});

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值