鍍金池/ 問答/影視  HTML/ [Vue]better-scroll中音頻視頻無法播放

[Vue]better-scroll中音頻視頻無法播放

問題描述

在<scroll>中加入多個(gè)視頻和音頻(多媒體文件是通過后臺傳來的文件地址和后綴判斷屬于哪個(gè)類型,for+if添加進(jìn)dom的),better-scoll的touchstart導(dǎo)致音頻和視頻沒有辦法按播放按鈕圖片描述

問題出現(xiàn)的環(huán)境背景及自己嘗試過哪些方法

配置中click是true。。試著remove監(jiān)聽事件,但是報(bào)錯了。。試著添加@ontouchStart來控制音頻播放,但是這樣按音量鍵也會控制播放,而且多個(gè)音頻也沒法用flag來控制播放與暫停

相關(guān)代碼

// 請把代碼文本粘貼到下方(請勿用圖片代替代碼)
以下是部分頁面代碼

    <div class="survey-detail">
      <scroll class="list-survey" v-show="!showOver" :data="object" :mouseWheel="mouseWheel">
        <div class="survey-detail-wrapper">
           <div class="survey-detail-header" v-if="itemDetail.questionnaire">
          </div>
          <div class="survey-detail-content">
            <ul>
              <li v-for="(item, index) in object" :key="index" class="li-item">
                <p class="answer-bottom title" :class="{'choice':item.requiredFlag}">{{index + 1}}、{{item.subject}} <span class="answer-type">({{type[item.type-1]}})</span>
                  <br/>
                  <img :src="mediaUrl + item.mediaAttachment.realpath" v-if="item.hasOwnProperty('mediaAttachment') && (item.mediaAttachment.extend.toLowerCase() =='jpg'|| item.mediaAttachment.extend.toLowerCase()=='jpeg' || item.mediaAttachment.extend.toLowerCase()=='png')" style="width: 70%;">
                  <video :src="mediaUrl + item.mediaAttachment.realpath" v-if="item.hasOwnProperty('mediaAttachment') && (item.mediaAttachment.extend.toLowerCase() == 'mp4' || item.mediaAttachment.extend.toLowerCase() == 'rmvb' || item.mediaAttachment.extend.toLowerCase() == 'avi' || item.mediaAttachment.extend.toLowerCase() =='wma' || item.mediaAttachment.extend.toLowerCase() == '3gp' || item.mediaAttachment.extend.toLowerCase() =='mov' ||item.mediaAttachment.extend.toLowerCase() == 'webm')" controls="controls" style="width: 70%;" controlsList="nodownload" oncontextmenu="return false"></video>
                  <audio :src="mediaUrl + item.mediaAttachment.realpath" v-if="item.hasOwnProperty('mediaAttachment') && (item.mediaAttachment.extend.toLowerCase() =='mp3'|| item.mediaAttachment.extend.toLowerCase()=='ape' || item.mediaAttachment.extend.toLowerCase()=='flac')" style="width:90%" controls="controls"  controlsList="nodownload" oncontextmenu="return false"></audio>
                </p>
           

以下是better-scroll代碼

<template>
  <div ref="wrapper">
    <slot></slot>
  </div>
</template>

<script >
import BScroll from 'better-scroll'

export default {
  props: {
    probeType: {
      type: Number,
      default: 1
    },
    click: {
      type: Boolean,
      default: true
    },
    tap: {
      type: Boolean,
      default: true
    },
    listenScroll: {
      type: Boolean,
      default: false
    },
    data: {
      type: Array,
      default: null
    },
    pullup: {
      type: Boolean,
      default: true
    },
    pulldown: {
      type: Boolean,
      default: true
    },
    // 開啟鼠標(biāo)滾輪事件
    mouseWheel: {
      type: Boolean,
      default: false
    },
    beforeScroll: {
      type: Boolean,
      default: false
    },
    refreshDelay: {
      type: Number,
      default: 20
    }
  },
  mounted() {
    setTimeout(() => {
      this._initScroll()
    }, 20)
  },
  methods: {
    _initScroll() {
      if (!this.$refs.wrapper) {
        return
      }
      this.scroll = new BScroll(this.$refs.wrapper, {
        probeType: this.probeType,
        click: this.click,
        mouseWheel: this.mouseWheel
      })
      if (this.listenScroll) {
        let me = this
        this.scroll.on('scroll', (pos) => {
          me.$emit('scroll', pos)
        })
      }
      // 上拉加載
      if (this.pullup) {
        this.scroll.on('scrollEnd', () => {
          if (this.scroll.y <= (this.scroll.maxScrollY + 50)) {
            this.$emit('scrollToEnd')
          }
        })
      }
      // 下拉刷新
      if (this.pulldown) {
        this.scroll.on('touchEnd', (pos) => {
          // 下拉動作
          if (pos.y > 50) {
            this.$emit('pulldown')
          }
        })
      }

      if (this.beforeScroll) {
        this.scroll.on('beforeScrollStart', () => {
          this.$emit('beforeScroll')
        })
      }
    },
    disable() {
      this.scroll && this.scroll.disable()
    },
    enable() {
      this.scroll && this.scroll.enable()
    },
    refresh() {
      this.scroll && this.scroll.refresh()
    },
    scrollTo() {
      this.scroll && this.scroll.scrollTo.apply(this.scroll, arguments)
    },
    scrollToElement() {
      this.scroll && this.scroll.scrollToElement.apply(this.scroll, arguments)
    }
  },
  watch: {
    data() {
      setTimeout(() => {
        this.refresh()
      }, this.refreshDelay)
    }
  }
}
</script>

<style scoped lang="stylus" rel="stylesheet/stylus">

</style>
     

你期待的結(jié)果是什么?實(shí)際看到的錯誤信息又是什么?

回答
編輯回答
兮顏

嘗試用音頻視頻插件可是把問題弄的好復(fù)雜,最后的最后我放棄了better-scroll。

2017年5月27日 11:49