美文网首页
微信小程序:消息提醒音播放

微信小程序:消息提醒音播放

作者: 有想法的人 | 来源:发表于2018-08-17 09:14 被阅读1220次

    在微信小程序中,我们常常也需要有消息推送的提示音,而微信给我提供了很多音频播放的接口,在一番调试下,发现下面这个可以很好的解决提示音效的问题。

    const innerAudioContext = wx.createInnerAudioContext();//新建一个createInnerAudioContext();
    innerAudioContext.autoplay = true;//音频自动播放设置
    innerAudioContext.src = '/audio/notice.mp3';//链接到音频的地址
    innerAudioContext.onPlay(() => {});//播放音效
    innerAudioContext.onError((res) => {//打印错误
      console.log(res.errMsg);//错误信息
      console.log(res.errCode);//错误码
    })
    

    相关文章

      网友评论

          本文标题:微信小程序:消息提醒音播放

          本文链接:https://www.haomeiwen.com/subject/dnfzbftx.html