公告
Last updated
Last updated
new Vue({ el: '#player', data() { return { vodPlayerJs: 'https://player.polyv.net/script/player.js', vid: '88083abbf51115afd5b25ae88413b04a_8', }; }, mounted(){ this.loadPlayerScript(this.loadPlayer); }, methods: { loadPlayerScript(callback) { if (!window.polyvPlayer) { const myScript = document.createElement('script'); myScript.setAttribute('src', this.vodPlayerJs); myScript.onload = callback; document.body.appendChild(myScript); } else { callback(); } }, loadPlayer() { const polyvPlayer = window.polyvPlayer; this.player = polyvPlayer({ wrap: '#player', vid: this.vid , autoplay:false, }); } }, destroyed() { if (this.player) { this.player.destroy(); } } })
SaaS-Web | 移动端 |
---|---|
端侧 | 描述 |
---|---|
SaaS观看页 | 支持 |
Web-SDK(观看页SDK) | 支持 |
移动端原生多场景SDK | 支持 |