<template>
  <el-row style="background: #000;">
    <audio ref="audio" :src="music_path" loop="loop">
      <!--                <source src="" type="audio/wav">-->
      <!--                <source src="" type="audio/mpeg">-->
      <!--                <source src="http://sc1.111ttt.cn/2018/1/03/13/396131232171.mp3" type="audio/mpeg">-->
      <!--                controls  class="btn-audio"-->
      <!--<source :src="recordUrl" type="audio/mpeg">-->
    </audio>
    <button type="button" @click="reloadYP">{{buttonText}}</button>
  </el-row>


</template>
<style></style>
<script>
 // import fngmp3 from "@/assets/mp3/fng.mp3";

  export default {
    data () {
      return {
        msg: 'vue模板页',
        buttonText:'stop',
        music_path: 'http://sc1.111ttt.cn/2018/1/03/13/396131229550.mp3',
      }
    },
    mounted: function(){

      this.reloadYP();
    },
    methods: {
      reloadYP () {
        this.$refs.audio.src = 'http://sc1.111ttt.cn/2018/1/03/13/396131232171.mp3';
        //this.$refs.audio.src = fngmp3;
        console.log(this.music_path);
        console.log('hello');
        // this.music_path = 'http://sc1.111ttt.cn/2018/1/03/13/396131232171.mp3';
        if (this.is_play) {
          this.$refs['audio'].pause();
          this.is_play = false
          this.buttonText = 'stopped'
        } else {
          this.$refs['audio'].play();
          this.is_play = true
          this.buttonText = 'starting'
        }
      },

    }
  }
</script>

 

在data的变量中,设置了默认值, 如果不设置,会提示错误。
在给标签赋值的时候,不能给变量赋值,因为会不起作用,需要使用

this.$refs.audio.src = 'http://sc1.111ttt.cn/2018/1/03/13/396131232171.mp3';

这样就可以解决了。

Logo

前往低代码交流专区

更多推荐