bl.followCloudUpper(Object object)
基础库 2.5.0 开始支持,低版本需做兼容处理
关注排行榜用户。该接口只可在开放数据域下使用。
在通过bl.getAllCloudStorage
成功获取到世界排行榜之后可以使用该 API 来关注世界排行榜中的成员
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
data | object | 是 | 世界排行榜数据数组中 想要关注的用户所对应的数据块 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码
/*开放域中*/
let dataList = []; // 用来保存所获取的排行榜数据
bl.getAllCloudStorage({
keyList: ['score2', 'score1'],
success(res) {
dataList = res.data[0].singleUserGameDataList;
},
});
function follow(n) {
bl.followCloudUpper({
data: dataList[n], // 想要关注的用户所对应的数据块
success(res) {
console.info('follow success', res);
},
fail(res) {
console.info('follow fail', res);
},
});
}