LivePlayerContext.resume

2020-08-26 16:34 更新

解釋?zhuān)夯謴?fù)

方法參數(shù)

Object object

object參數(shù)說(shuō)明

參數(shù)名 類(lèi)型 必填 默認(rèn)值 說(shuō)明

success

Function

接口調(diào)用成功的回調(diào)函數(shù)

fail

Function

接口調(diào)用失敗的回調(diào)函數(shù)

complete

Function

接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會(huì)執(zhí)行)

示例 

在開(kāi)發(fā)者工具中打開(kāi)



圖片示例

代碼示例

<view class="wrap">
    <live-player id="myLive" src="{{src}}" autoplay="true">
    </live-player>
    <button type="primary" bind:tap="livePause" disabled="{{disabled}}">暫停播放 pause</button>
    <button type="primary" bind:tap="liveResume" disabled="{{!disabled}}">恢復(fù)播放 resume</button>
</view>
Page({
    data: {
        disabled: false,
        src: 'https://b.bdstatic.com/miniapp/development_tool/Smartprogram.mp4'
    },
    onReady() {
        this.livePlayerContext = swan.createLivePlayerContext('myLive');
    },
    livePause() {
        swan.showToast({
            title: '已暫停',
            icon: 'none'
        });
        this.livePlayerContext.pause();
        this.setData({disabled: true});
    },
    liveResume() {
        swan.showToast({
            title: '已恢復(fù)',
            icon: 'none'
        });
        this.livePlayerContext.resume();
        this.setData({disabled: false});
    }
});

    評(píng)價(jià)本篇文檔非常不滿(mǎn)意不滿(mǎn)意一般滿(mǎn)意非常滿(mǎn)意


    以上內(nèi)容是否對(duì)您有幫助:
    在線(xiàn)筆記
    App下載
    App下載

    掃描二維碼

    下載編程獅App

    公眾號(hào)
    微信公眾號(hào)

    編程獅公眾號(hào)