---
title: 作者
description: 作者 - ContributorFinder
---
## getContributor(name)
```js
contributorFinder.getContributor(name)
```
### 描述
根据 `metadata.name` 获取作者。
### 参数
1. `name:string` - 作者的唯一标识 `metadata.name`。
### 返回值
[#Contributor](#contributor)
### 示例
```html
```
## getContributors(names)
```js
contributorFinder.getContributors(names)
```
### 描述
根据一组 `metadata.name` 获取作者。
### 参数
1. `names:List` - 作者的唯一标识 `metadata.name` 的集合。
### 返回值
List<[#Contributor](#contributor)>
### 示例
```html
```
## 类型定义
### Contributor
```json title="Contributor"
{
"name": "string",
"displayName": "string",
"avatar": "string",
"bio": "string"
}
```