[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 @   唯一客服系统开发笔记  阅读(278)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2021-01-08 [javascript] ie下audio不支持一些媒体类型
2021-01-08 [javascript] ie下不支持incudes属性和方法
2021-01-08 [MySQL] 数据库自增ID用完了会怎么样
2020-01-08 [Linux] git add时的注意事项
点击右上角即可分享
微信分享提示
1
chat with us