onShareAppMessage回调的Bug?
发布于 6 年前 作者 xiayu 17606 次浏览 来自 问答
  • 当前 Bug 的表现

回调成功后,调用audio播放声音没有效果。

  • 代码片段

onShareAppMessage: function (event) {

    if (event.from === ‘button’) {

    console.log(event.target)

    }

    return {

        title: ‘title’,

        path: ‘/index/index’,

        success(e){

                var audio = wx.createInnerAudioContext();

                audio.src = “/audios/pass.mp3”;

                audio.play();

                that.setData({

                    flag: 1

                });

        }

    }

}

2 回复

早就说了要废弃了,不知微信在想什么。

终于线上关闭分享了吗。。

回到顶部