[uniapp] GOFLY在线客服系统- uniapp增加播放背景音效或者按钮音效

当实现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;
        }

 

posted @ 2022-01-08 23:47  唯一客服系统开发笔记  阅读(234)  评论(0编辑  收藏  举报