1.3.7.2 QN.loading
优质
小牛编辑
134浏览
2023-12-01
1.1. API 调用
1.1.1. QN.showLoading(options)
显示全局 Loading
API 调用入参
参数名 | 类型 | 是否可选 | 默认值 | 含义 |
---|---|---|---|---|
options | Object | 选项 | ||
options.query | Object | optional | 接口调用参数 | |
options.query.text | String | optional | 需要同时显示的文本内容 | |
options.success | Function | optional | 调用成功的回调函数 | |
options.error | Function | optional | 调用失败的回调函数 |
API 响应结果
参数名 | 类型 | 是否必须返回 | 含义 |
---|---|---|---|
result | Object | 响应对象 | |
result.code | String | 错误码,成功为 QAP_SUCCESS ;失败为其他 | |
result.msg | String | 错误信息 |
调用示例
QN.showLoading({
query: {
text: '加载中 ~~'
}
}).then(result => {
console.log(result);
}, error => {
console.log(error);
});
QN.showLoading({
query: {
text: '加载中 ~~'
},
success(result) {
console.log(result);
},
error(error) {
console.log(error);
}
});
1.1.2. QN.hideLoading(options)
隐藏全局 Loading
API 调用入参
参数名 | 类型 | 是否可选 | 默认值 | 含义 |
---|---|---|---|---|
options | Object | 选项 | ||
options.success | Function | optional | 调用成功的回调函数 | |
options.error | Function | optional | 调用失败的回调函数 |
API 响应结果
参数名 | 类型 | 是否必须返回 | 含义 |
---|---|---|---|
result | Object | 响应对象 | |
result.code | String | 错误码,成功为 QAP_SUCCESS ;失败为其他 | |
result.msg | String | 错误信息 |
调用示例
QN.hideLoading()
.then(result => {
console.log(result);
}, error => {
console.log(error);
});
QN.hideLoading({
success(result) {
console.log(result);
},
error(error) {
console.log(error);
}
});