Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extensions 更正为 filters #145

Merged
merged 1 commit into from
Mar 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions zh-CN/schema/basic/path.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ code: |
支持传入一些额外的选项:

- `allowCreate`:是否允许创建目录和上传文件
- `extensions`:可选的文件的扩展名列表,扩展名全需要以 `.` 开头;特别地其中如果包含 `directory` 则表示可以选择文件夹
- `filters`:可选的文件的扩展名列表,扩展名全需要以 `.` 开头;特别地其中如果包含 `directory` 则表示可以选择文件夹

```ts
export default Schema.object({
path1: Schema.path(),
path2: Schema.path({
extensions: ['.png', '.jpg', 'directory'],
filters: ['.png', '.jpg', 'directory'],
}),
})
```
Loading