dlt.navigateBack
简介
dlt.navigateBack 是关闭当前页面,返回上一级或多级页面的 API
参数
Object object
属性 | 类型 | 默认值 | 必填 | 描述 |
---|---|---|---|---|
delta | number | 否 | 需要回退的页面数量,从-1 递减开始 | |
autoExit | boolean | 否 | 当回退到最后一页时,是否自动退出小程序 | |
params | string | 否 | 附加的 Object 格式的字符串数据 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码
dlt.navigateBack({
delta: -1,
autoExit: true,
params: JSON.stringify({ a: 1 }),
success(res) {
console.log('success: ', res);
},
});