生命周期事件
接口说明
提供四个事件,可以设置钩子方法。
HWH5.app
请求参数
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
onLaunch | Function | 否 | 应用启动 |
onShow | Function | 否 | 应用切换到前台 |
onHide | Function | 否 | 应用切换到后台 |
onClose | Function | 否 | 退出应用 |
返回结果
无。
请求示例
ES6版本
HWH5.app({ onLaunch() { // 启动 console.log('onLaunch'); }, onShow() { // 切换前台 console.log('onShow'); }, onHide() { // 切换后台 console.log('onHide'); }, onClose() { // 关闭 console.log('onClose'); } }).catch(error => { console.log(error); });
ES5版本
HWH5.app({ onLaunch: function () { // 启动 console.log('onLaunch'); }, onShow: function () { // 切换前台 console.log('onShow'); }, onHide: function () { // 切换后台 console.log('onHide'); }, onClose: function () { // 关闭 console.log('onClose'); } }).catch(function(error) { console.log(error); });