当实现GOFLY在线客服系统的时候
uniapp中想要实现来信息时出提示音效果
总结出的函数代码:
function playVoice(){ var innerAudioContext = uni.createInnerAudioContext(); innerAudioContext.src = '/static/alert.mp3'; innerAudioContext.onPlay(() => { console.log('开始播放'); }); innerAudioContext.onError((res) => { console.log(res.errMsg); console.log(res.errCode); }); innerAudioContext.play(); innerAudioContext=null; }