我正在使用文件输入 html 元素进行文件上传。
<input type="file" name="data[File][0][attachment]" accept="application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/pdf"style="display:inline;width:70%% !important;" class="file-upload" />
我知道这是为了:
application/pdf
application/vnd.openxmlformats-officedocument.wordprocessingml.document
我还需要将 .eml 添加到 accept
属性中
如何查找 .eml 文件类型?
我尝试了 application/eml
但没有成功。
看起来
.eml
文件没有 mime 类型。此处未列出 http://www.iana.org/assignments/媒体类型/media-types.xhtml。但由于
accept
属性接受 mime 类型和文件扩展名,因此您可以将.eml
添加到其值中。试试这个