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

}

 

推荐链接

评论可见,请评论后查看内容,谢谢!!!评论后请刷新页面。