onHide: function () {
var that = this;
if (that.data.quid == 0) {
wx.stopBackgroundAudio();
}
},
onUnload: function () {
var that = this;
if (that.data.quid == 0) {
wx.stopBackgroundAudio();
}
}
安卓版本5.1版本中 卸载页面中就可以终止音频 隐藏页面就不可以终止音频 两段代码一样
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
L***:
你的意思是说 wx.stopBackgroundAudio() 在 onUnload 中无效?
本文网址:http://www.91bianli.com/weixinxiaochengxu/57187.html