收藏
回答

小程序双人视频通话顶部标题位置显示undefined?

怎么解决?

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

1 个回答

  • Demons
    Demons
    2023-08-03

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

    2023-08-03
    有用
    回复 1
    • Sdn
      Sdn
      2023-08-04
      就是官方的接口,没有别的东西。
      wx.setEnable1v1Chat({
                enable: true,
                success(resVideo) {
                  wx.join1v1Chat({
                    roomType: 'video',
                    // 接收方信息
                    listener: {
                      nickname: 'a', 
                      openid: 'openid1', 
                    },
                    caller: {
                      nickname: 'b', 
                      openid: 'openid2',
                    },
                    success(res) {
                      
                    },
                    fail(err) {
                      
                    },
                  });
                },
                fail(err) {
                },
              });
      2023-08-04
      回复
登录 后发表内容