收藏
回答

直播组件live-player 使用API在IOS端播放Bug?

直播组件live-player 在IOS端使用createLivePlayerContex播放的时候,直接报错

live-player error: insertLivePlayer:fail jsapi has no permission, event=insertLivePlayer, runningState=foreground, permissionMsg=permission got, detail=jsapi has no permission


代码如下

    <live-player

      :style="{

        width: width,

        height: height

      }"

      :src="data.playUrl"

      :autoplay="false"

      id="livePlayer"

    />


  let id = 'livePlayer';

  this.playerCtx = wx.createLivePlayerContext(id, this);

  console.log('this.playerCtx', this.playerCtx);

      setTimeout(() => {

        let that = this;


        this.playerCtx.play({

          success: function() {

            console.log('成功了');

   

          },

          error: function() {

 

          }

        });

      }, 100);

最后一次编辑于  2023-04-18
回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容