显示弱提示
methodName: showToast
额外参数:
属性 | 类型 | 是否必填 | 默认值 | 描述 |
---|---|---|---|---|
title | String | 是 | 提示的内容 | |
icon | String | 否 | 图标 - success:显示成功图标,当文本超长时 title 文本最多显示 7 个汉字长度 - error:显示失败图标,当文本超长时 title 文本最多显示 7 个汉字长度 - loading:显示加载图标,当文本超长时 title 文本最多显示 7 个汉字长度 - none:不显示图标,此时 title 文本最多可显示两行 | |
duration | Number | 否 | 1500 | 提示的延迟时间 |
mask | Boolean | 否 | false | 是否显示透明蒙层,防止触摸穿透 |
success 回调函数
参数
Object res
属性 | 类型 | 描述 |
---|---|---|
success | String | 描述接口调用成功或失败。"true": 成功;"false":失败 |
fail 回调函数
参数
Object res
属性 | 类型 | 描述 |
---|---|---|
success | String | 描述接口调用成功或失败。"true": 成功;"false":失败 |
errMsg | String | 错误信息 |
调用示例
const dlt = window['@transsion/byteh5bridge'];
const canCallDlt = dlt && window.dltms && window.dltms.isMiniShellGame();
if (canCallDlt) {
dlt.callApi('showToast', {
title: 'toast title',
icon: 'success',
duration: 1000,
mask: true,
success: (res) => {
console.log('success: ', res);
},
fail: (res) => {
console.log('fail: ', res);
},
complete: (res) => {
console.log('complete: ', res);
},
});
}