swan.onAppHide

基础库 3.60.2 开始支持,低版本需做兼容处理swan.onAppHide - 图1

解释: 监听小程序切后台事件。该事件与 App.onHide 的回调时机一致。

方法参数

Function callback小程序切后台事件的回调函数。

示例

扫码体验

swan.onAppHide - 图2请使用百度APP扫码

图片示例

swan.onAppHide - 图3

swan.onAppHide - 图4

swan.onAppHide - 图5

代码示例

  1. // app.js
  2. App({
  3. onHide: function (res) {
  4. console.log('onHide', res)
  5. swan.showModal({
  6. title: 'res',
  7. content: JSON.stringify(res),
  8. showCancel: false
  9. });
  10. }
  11. });
  1. // app.js
  2. App({
  3. onLaunch: function () {
  4. swan.onAppHide(function(res) {
  5. swan.showModal({
  6. title: 'res',
  7. content: JSON.stringify(res),
  8. showCancel: false
  9. });
  10. console.log('App hide');
  11. });
  12. }
  13. });