Ich verwende das Dateieingabe-HTML-Element zum Hochladen von Dateien.
<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" />
Ich weiß, das ist für:
application/pdf
application/vnd.openxmlformats-officedocument.wordprocessingml.document
Ich muss auch die .eml-Datei zum accept
-Attribut hinzufügen
Wie finde ich den Dateityp .eml?
Ich habe es versucht application/eml
, aber es hat nicht funktioniert.
看起来
.eml
文件没有 mime 类型。此处未列出 http://www.iana.org/assignments/媒体类型/media-types.xhtml。但由于
accept
属性接受 mime 类型和文件扩展名,因此您可以将.eml
添加到其值中。试试这个