Home > LIB_Classification > getAllClassificationTree
LIB_Classification.getAllClassificationTree() method
此 API 当前处于 BETA 预览状态,希望得到开发者的反馈。它的任何功能都可能在接下来的开发进程中被修改,请不要将它用于任何正式环境。
获取所有分类信息组成的树
签名
typescript
getAllClassificationTree(libraryUuid: string, libraryType: ELIB_LibraryType): Promise<{
name: string;
uuid: string;
children?: {
name: string;
uuid: string;
}[] | undefined;
}[]>;
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
参数名
参数 | 类型 | 描述 |
---|---|---|
libraryUuid | string | 库 UUID |
libraryType | 库类型 |
返回值
Promise<{ name: string; uuid: string; children?: { name: string; uuid: string; }[] | undefined; }[]>
分类信息组成的树结构数据