swan.onAppHide
基础库 3.60.2 开始支持,低版本需做兼容处理。
解释: 监听小程序切后台事件。该事件与 App.onHide 的回调时机一致。
方法参数
Function callback小程序切后台事件的回调函数。
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 示例一:在onHide中使用在开发者工具中预览效果
// app.js
App({
onHide: function (res) {
console.log('onHide', res)
swan.showModal({
title: 'res',
content: JSON.stringify(res),
showCancel: false
});
}
});
- 示例二:在生命周期的onAppHide中使用在开发者工具中预览效果
// app.js
App({
onLaunch: function () {
swan.onAppHide(function(res) {
swan.showModal({
title: 'res',
content: JSON.stringify(res),
showCancel: false
});
console.log('App hide');
});
}
});