想定义一段音频,在需要的时候自动想起,用于提示音,问度娘,看友友的帖子,解决
点击音效按钮自动播放,代码如下:
<template>
<view>
<button @click="yinxiao()">音效</button>
</view>
</template>
直接把官网的铃声拿过来用了
methods:{
yinxiao(){
const innerAudioContext = uni.createInnerAudioContext();
innerAudioContext.autoplay = true;
innerAudioContext.src = 'https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-hello-uniapp/2cc220e0-c27a-11ea-9dfb-6da8e309e0d8.mp3';
innerAudioContext.onPlay(() => {
console.log('开始播放');
});
innerAudioContext.onError((res) => {
console.log(res.errMsg);
console.log(res.errCode);
});
}
}