收藏
回答

channel-live 组件不显示?

wxml代码

<view>
  <view>直播组件测试</view>
  <button bind:tap="openLive">跳转直播</button>
  <view class="live-component-wrap">
    <channel-live
      class="live-component"
      :feed-id="feedId"
      :finder-user-name="finderUserName"
    ></channel-live>
  </view>
</view>



js代码

Page({
  data: {
    feedId: '',
    finderUserName: 'sphxxxxxxxxx'
  },
  onLoad() {
    this.getLiveInfo()
  },
  getLiveInfo() {
    const _this = this
    wx.getChannelsLiveInfo({
      finderUserName: _this.data.finderUserName,
      success(res) {
        _this.setData({
          feedId: res.feedId
        })
      },
      fail(err) {
      },
    })
  },
  openLive() {
    const _this = this
    wx.openChannelsLive({
      finderUserName: _this.data.finderUserName
    })
  }
})


页面渲染结果

已经反复确认小程序主体与视频号主体是一致的!

wx.getChannelsLiveInfo调用均正常,能正常返回结果

基础版本库3.0.0


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

2 个回答

  • Demons
    Demons
    2023-10-19

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段,给一个这个我这边测试(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2023-10-19
    有用
    回复 3
    • 卡🏆卡
      卡🏆卡
      2023-10-19
      你好,麻烦你有空了看一下我给你发的私信,谢谢
      2023-10-19
      回复
    • 再见,龙猫
      再见,龙猫
      2023-10-19
      代码片段已经发私信,请帮忙看下,谢谢
      2023-10-19
      回复
    • 再见,龙猫
      再见,龙猫
      2023-10-23
      你好请问有结果了吗
      2023-10-23
      回复
  • 哆啦A孟
    哆啦A孟
    04-10

    或者更应该这样

    04-10
    有用
    回复
登录 后发表内容