收藏
回答

wx.createLivePusherContext()应该怎么传参数

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 需求 live-pusher 客户端 6.6.7 2.3.0

Page页面下使用<live-pusher/>组件,wx.createLivePusherContext()应该传什么参数?

官方demo是传控件的Id,官方文档是说传当前组件实例的this,

究竟要怎么传参数?在Page页面下



如果Page对应的wxml有以下组件,下面①②哪种写法是正确的呢?

<live-pusher id="pusher" url="https://domain/push_stream" mode="RTC" autopush bindstatechange="statechange" />


①:

Page({

onReady(res) {

this.ctx = wx.createLivePusherContext('pusher')

},})


②:

Page({

onReady(res) {

this.ctx = wx.createLivePusherContext(this)

},})



回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容