Home  >  Q&A  >  body text

html5 - How to use Alibaba Cloud Video on Demand Web Player SDK in a Vue.js project

How to use Alibaba Cloud Video on Demand Web Player SDK in the Vue.js project?

Alibaba Cloud’s official documentation page: https://help.aliyun.com/docum...

My code:

<template>
<p class="">
  <p class="prism-player" id="J_prismPlayer" style="position: absolute"></p>

</p>
</template>
<style>
</style>

<script>
var player = new prismplayer({
  id: 'J_prismPlayer',
  width: '100%',
  autoplay: false,
  //播放方式一:推荐
  prismType: 2,
  vid: '',
  accId: '',
  accSecret: '',
  apiKey: '',

  // vid : '',
  // playauth : '',
  showBarTime: 3000000,
  cover: 'http://liveroom-img.oss-cn-qingdao.aliyuncs.com/logo.png'
});
export default {
  created: function() {

  }
}
</script>

Error report:

prism-h5-min.js:2 Uncaught TypeError: 没有为播放器指定容器
    at new i (prism-h5-min.js:2)
    at eval (eval at <anonymous> (app.js:1555), <anonymous>:4:14)
    at Object.<anonymous> (app.js:1555)
    at __webpack_require__ (app.js:687)
    at fn (app.js:110)
    at eval (eval at <anonymous> (app.js:1562), <anonymous>:7:3)
    at Object.<anonymous> (app.js:1562)
    at __webpack_require__ (app.js:687)
    at fn (app.js:110)
    at eval (eval at <anonymous> (app.js:1053), <anonymous>:19:77)
某草草某草草2712 days ago2973

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-05-16 13:37:06

    Introduce js in index.html
    Then find webpackConfig
    Configuration in build/webpack.base.conf.js

    externals: {
      "prismplayer": "prismplayer"
    }

    In your project

    export default {
      mounted: function() {
        let player = new prismplayer({
          id: 'J_prismPlayer',
          width: '100%',
          autoplay: false,
          //播放方式一:推荐
          prismType: 2,
          vid: '',
          accId: '',
          accSecret: '',
          apiKey: '',
        
          // vid : '',
          // playauth : '',
          showBarTime: 3000000,
          cover: 'http://liveroom-img.oss-cn-qingdao.aliyuncs.com/logo.png'
        });
      }
    }

    reply
    0
  • Cancelreply