onShow: function() {
wx.setKeepScreenOn({
keepScreenOn: true,
})
this.push = wx.createLivePusherContext("pusher");
this.push.start();
this.time = 0;
this.timer = setInterval(_ => {
this.time += 1;
this.setData({
time: this.timeFormat(this.time)
});
}, 1000)
},
国外用户发起音频直播时,国内用户听不到声音,
国内用户发起音频直播时,国内用户收听正常,国外用户听不到声音,
使用的微信不是官网版本吗