在main.js中创建音频对象
Vue.prototype.playAudio = function(audioUrl){
var innerAudioContext = null;
innerAudioContext = uni.createInnerAudioContext(); //创建播放器对象
innerAudioContext.autoplay = false;
innerAudioContext.src= audioUrl; //选择播放的音频
innerAudioContext.play(); //执行播放
}
IOS在需要播放的页面中,未调用接口之前,可以播放音频;
调用接口之后,无法播放音频,这是什么原因呢?
如下图: