dlt.showHomeButton
简介
显示主页按钮
参数
属性 | 类型 | 默认值 | 必填项 | 描述 |
---|---|---|---|---|
action | string | 同 app.json 中 navigationBarHomeAction 字段属性, 如果 navigationBarHomeAction 配置为空则为 home | 否 | home :小房子按钮且返回主页 back:向左返回箭头,仅返回一级 all : 显示返回与小房子胶囊体 |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码
dlt.showHomeButton({
action: 'home',
success(res) {
console.log('success: ', res);
},
});