Home > LIB_Classification > getNameByUuid
LIB_Classification.getNameByUuid() method
此 API 当前处于 BETA 预览状态,希望得到开发者的反馈。它的任何功能都可能在接下来的开发进程中被修改,请不要将它用于任何正式环境。
获取指定 UUID 的分类的名称
签名
typescript
getNameByUuid(libraryUuid: string, libraryType: ELIB_LibraryType, primaryClassificationUuid: string, secondaryClassificationUuid?: string): Promise<{
primaryClassificationName: string;
secondaryClassificationName?: string | undefined;
} | undefined>;
1
2
3
4
2
3
4
参数名
参数 | 类型 | 描述 |
---|---|---|
libraryUuid | string | 库 UUID |
libraryType | 库类型 | |
primaryClassificationUuid | string | 一级分类 UUID |
secondaryClassificationUuid | string | (Optional) 二级分类 UUID,如若不指定,则只获取一级分类的信息 |
返回值
Promise<{ primaryClassificationName: string; secondaryClassificationName?: string | undefined; } | undefined>
两级分类的名称