在微信小程序中拂酣,我們常常也需要有消息推送的提示音,而微信給我提供了很多音頻播放的接口仲义,在一番調(diào)試下婶熬,發(fā)現(xiàn)下面這個(gè)可以很好的解決提示音效的問題。
const innerAudioContext = wx.createInnerAudioContext();//新建一個(gè)createInnerAudioContext();
innerAudioContext.autoplay = true;//音頻自動播放設(shè)置
innerAudioContext.src = '/audio/notice.mp3';//鏈接到音頻的地址
innerAudioContext.onPlay(() => {});//播放音效
innerAudioContext.onError((res) => {//打印錯誤
console.log(res.errMsg);//錯誤信息
console.log(res.errCode);//錯誤碼
})