请教大佬,帮我看下这段代码哪里出错了?
<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)
1 个回复
DCMarvel
audio 使用方法