# ks.checkCommonUse
检查用户是否已经将小游戏设为常用
请求 object
字段名 | 类型 | 描述 | values |
---|---|---|---|
success | function | 接口调用成功的回调函数 | |
fail | function | 接口调用失败的回调函数 | |
complete | function | 接口调用结束的回调函数(调用成功、失败都会执行) |
回调成功
字段名 | 类型 | 描述 | values |
---|---|---|---|
code | int | 1 表示成功 | |
msg | string | "checkCommonUse:ok" | |
isCommonUse | bool | true 表示已经设为常用 false 表示未设置为常用 |
回调失败
字段名 | 类型 | 描述 | values |
---|---|---|---|
code | int | 异常错误码 | |
msg | string | "checkCommonUse:fail" |
example
ks.checkCommonUse({
success(res) {
console.log(`设为常用查询结果为:${res.isCommonUse}`);
},
fail(err) {
if (err.code === -10005) {
console.log("暂不支持该功能");
} else {
console.log("设为常用查询失败", err.msg);
}
},
});