apiPlayList 視頻列表
視頻播放列表標簽
注意:未(wei)登錄的情(qing)況下調用此標簽返回false
快速開始(復制即用)
微信原生版
let that = this;
app.globalData._requestApi(
that,
app.globalData.config.apiIndexUrl,
{
apiPlayList_1: `ekey=1`
},
function(res) {
that.setData({
playList_1: res.data.apiPlayList[1]
});
}
);uni-app 版
let that = this;
app.globalData._requestApi(
that,
app.globalData.config.apiIndexUrl,
{
apiPlayList_1: `ekey=1`
},
function(res) {
that.playList_1 = res.data.apiPlayList[1];
}
);?? ekey=1 必須對應 apiPlayList[1],數字要一致!
全部參數
基礎參數
| 參數 | 說明 | 示例 |
|---|---|---|
ekey | 必填,唯一標識,數字必須與返回的 apiPlayList[數字] 對應 | ekey=1 |
page | 當前頁碼,不傳默認為1 | page=1 |
pagesize | 分頁大小,不傳默認為10條 | pagesize=10 |
請查閱易優數據字典,找到表名 ey_media_play_record
文檔最后更新時間:2026-01-12 11:01:29
未解決你的問題?請到「問答社區」反饋你遇到的問題
