问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 需求 live-pusher 客户端 6.6.7 2.3.0
Page页面下使用
组件,wx.createLivePusherContext()应该传什么参数?
官方demo是传控件的Id,官方文档是说传当前组件实例的this,
究竟要怎么传参数?在Page页面下
如果Page对应的wxml有以下组件,下面①②哪种写法是正确的呢?
①:
Page({
onReady(res) {
this.ctx = wx.createLivePusherContext('pusher')
},})
②:
Page({
onReady(res) {
this.ctx = wx.createLivePusherContext(this)
},})
微信小程序开发问题解答
微信小程序开发者回答:
:文档:https://developers.weixin.qq.com/miniprogram/dev/api/media/live/wx.createLivePusherContext.html
本文网址:http://www.91bianli.com/kaifazhinan/74695.html