uniapp 运行到H5或微信小程序,无法自动播放音频
【代码】uniapp 运行到H5或微信小程序,无法自动播放音频。
·
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);
});
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐
所有评论(0)