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);
});
uniapp 运行到H5或微信小程序,无法自动播放音频
最新推荐文章于 2025-03-24 09:38:44 发布