微信小程序中进入页面播放音频 关闭页面之后音频依然存在

 

onload(){
    this.palyAudio()
},
methods:{
    palyAudio() {
	    this.Audio.src = 'https://fgsys.chuiker.com/fgmp3.mp3';
	    wx.setInnerAudioOption({
		    obeyMuteSwitch: false,
	    });
	    this.Audio.play();
    },
}
//页面销毁之前将音频关闭
beforeDestroy() {
	this.Audio.src = ""
	this.Audio.stop();
},

你可能感兴趣的:(微信小程序,uniapp,vue,微信小程序)