在微信小程序中,我们常常也需要有消息推送的提示音,而微信给我提供了很多音频播放的接口,在一番调试下,发现下面这个可以很好的解决提示音效的问题。
const innerAudioContext = wx.createInnerAudioContext();//新建一个createInnerAudioContext();
innerAudioContext.autoplay = true;//音频自动播放设置
innerAudioContext.src = '/audio/notice.mp3';//链接到音频的地址
innerAudioContext.onPlay(() => {});//播放音效
innerAudioContext.onError((res) => {//打印错误
console.log(res.errMsg);//错误信息
console.log(res.errCode);//错误码
})