zl程序教程

您现在的位置是:首页 >  其他

当前栏目

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

2023-02-18 15:36:44 时间

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