getFriendGroups
功能介绍
获取好友分组列表
- groupNameList 传入 null 获得所有分组信息。
参数详解
参数名称 |
参数类型 |
是否必填 |
描述 |
groupNameList |
string[] |
是 |
要获取信息的好友分组名称列表 |
返回模板
V2TimValueCallback<V2TimFriendGroup[]>
{
code : number
desc : string
data : V2TimFriendGroup[]
}
返回值详解
代码示例
import { TencentImSDKPlugin } from 'react-native-tim-js';
const getFriendGroupsRes = await TencentImSDKPlugin.v2TIMManager
.getFriendshipManager()
.getFriendGroups([]);
if (getFriendGroupsRes.code === 0) {
getFriendGroupsRes.data?.forEach((element) => {
element.friendCount;
element.friendIDList;
element.name;
});
}