dlt.enableAlertBeforeUnload
简介
开启小程序页面返回询问对话框。
弹窗条件
- 当用户在小程序内非首页页面/最底层页
- 官方导航栏上的的返回
- 全屏模式下自绘返回键
- android 系统 back 键时
注意事项
- 手势滑动返回时不做拦截
- 在任何场景下,此功能都不应拦住用户退出小程序的行为
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
message | String | 是 | 询问对话框内容 |
示例代码
Page({
onReady() {
dlt.enableAlertBeforeUnload({
message: 'Are you sure you want to leave?',
success: function (res) {},
fail: function (res) {},
complete: function (res) {},
});
},
});