收藏
回答

livePlayerContext.requestFullScreen调用不成功,没有报错也。?

目前还没有获得live-player的使用权限,手机打开调试模式应该也是能调试的。

===============wxml:

<live-player id="livePlayermode="liveautoplay src="{{playUrl}}"></live-player>

<view class="ver-hor disfrbindtap="verHorSwitch">

<label class="iconfont icon-quanpingwx:if="{{!playFullScreen}}"></label>

<label class="iconfont icon-tuichuquanpingwx:if="{{playFullScreen}}"></label>

</view>

===============js:

verHorSwitch() {

        this.livePlayerContext = this.livePlayerContext ? this.livePlayerContext : wx.createLivePlayerContext('livePlayer', this)

        const that = this

        console.log('livePlayerContext:' + this.livePlayerContext) // 此处打印已获取到实例

        this.livePlayerContext.requestFullScreen({

            direction: 90,

            success(res){

                console.log(res)

                that.setData({

                    playFullScreen: true

                })

            },

            fail(err){

                console.log(err, 'err')

            },

            complete(e) {

                console.log(e, 'e')

            }

        })

}


========其他信息

手机:IPHONE13

系统:IOS:15.1.1

微信:8.0.16

基础库:2.15.0

开发者工具:Stable 1.05.2110290

最后一次编辑于  2021-12-15
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容