为什么PC端小程序直播start回调函数都没有执行?
const handleStartLiving = () => {
const livePusherCtx = wx.createLivePusherContext('pusher')
livePusherCtx.start({
success: () => {
// 这里没有执行
console.log('test live success')
},
fail: (err) => {
// 这里也没有执行
console.log(err,'test live success')
}
})
}