我在哪里可以找到 FilePond 可接受的文件类型列表?
Where can I find the list of acceptable file type with FilePond?
我有一个 FilePond 的项目,如果文件类型不可接受,我正在尝试进行验证。
但是我在哪里可以找到可以与 FilePond
一起使用的文件类型列表。
<FilePond
acceptedFileTypes={['image/*', 'application/pdf']}
/>
我找到了如何接受 image
和 pdf
,但我仍在寻找示例代码来接受 .tiff
、.docx
、.txt
.
有人知道怎么做吗?
有效!
<FilePond
acceptedFileTypes={[
'image/*',
'application/pdf',
'.docx',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'text/plain',
]}
/>
你可以查看MIME Common types
.tiff
=> image/tiff
.docx
=> application/vnd.openxmlformats-officedocument.wordprocessingml.document
.txt
=> text/plain
我有一个 FilePond 的项目,如果文件类型不可接受,我正在尝试进行验证。
但是我在哪里可以找到可以与 FilePond
一起使用的文件类型列表。
<FilePond
acceptedFileTypes={['image/*', 'application/pdf']}
/>
我找到了如何接受 image
和 pdf
,但我仍在寻找示例代码来接受 .tiff
、.docx
、.txt
.
有人知道怎么做吗?
有效!
<FilePond
acceptedFileTypes={[
'image/*',
'application/pdf',
'.docx',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'text/plain',
]}
/>
你可以查看MIME Common types
.tiff
=> image/tiff
.docx
=> application/vnd.openxmlformats-officedocument.wordprocessingml.document
.txt
=> text/plain