tt.showLoading
2020-02-15 00:13 更新
从基础库 1.0.0 开始支持。
显示灰色背景的 loading 提示框。该提示框不会主动隐藏。
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
title | string | 是 | 内容,最多显示 7 个汉字长度的文本 | |
success | function | 否 | 接口调用成功后的回调函数 | |
fail | function | 否 | 接口调用失败后的回调函数 | |
complete | function | 否 | 接口调用结束后的回调函数(调用成功、失败都会执行) |
代码示例
tt.showLoading({
title: "请求中,请稍后...",
success(res) {
console.log(`${res}`);
},
fail(res) {
console.log(`showLoading调用失败`);
}
});
Bug & Tip
- 尚未支持mask参数。
- loading 的实现基于 toast,等同于icon为loading,duration为24小时的 toast。
- 多次弹出 toast/loading 时,后一个会立刻覆盖前一个。
以上内容是否对您有帮助:
更多建议: