onBackPress() {
if (this.innerAudioContext != null) {
this.innerAudioContext.stop();
}
}
这个代码在内置浏览器中返回可以停止音频,但在抖音和微信小程序里都停不住音频,不知道大家是如何处理返回页面停止音频播放的??
onBackPress() {
if (this.innerAudioContext != null) {
this.innerAudioContext.stop();
}
}
这个代码在内置浏览器中返回可以停止音频,但在抖音和微信小程序里都停不住音频,不知道大家是如何处理返回页面停止音频播放的??