ks5566
ks5566
  • 发布:2021-01-29 21:55
  • 更新:2021-01-30 18:02
  • 阅读:880

请教大佬,帮我看下这段代码哪里出错了?

分类:uni-app

请教大佬,帮我看下这段代码哪里出错了?

<template>  
  <view>  
    <audio ref="audio"><source src="https://vkceyugu.cdn.bspapp.com/VKCEYUGU-hello-uniapp/2cc220e0-c27a-11ea-9dfb-6da8e309e0d8.mp3"></audio>      
    <view style="cursor: pointer;" @click="onplay">点击播放</view>  
  </view>  
</template>  
<script>  
export default {  
  methods: {  
    onplay () {  
      this.$refs.audio.play()  
    }  
  }  
}  
</script>  

点击播放报错:

[Vue warn]: Error in v-on handler: "TypeError: this.$refs.audio.play is not a function"
found in
---> at pages/index/index.vue

[system] TypeError: this.$refs.audio.play is not a function
at VueComponent.onplay (index.vue:11)
at click (pages-index-index.js:39)
at invokeWithErrorHandling (chunk-vendors.js:5117)
at HTMLElement.invoker (chunk-vendors.js:5442)
at HTMLElement.original._wrapper (chunk-vendors.js:10320)

2021-01-29 21:55 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复