如何限制html上传文件类型为*.xmind?
How to restrict the html upload file type to *.xmind?
现在我正在开发一个 html 页面,该页面想要上传一个 XMind 文件(扩展名为 *.xmind)。
我现在正在制作一个 <input type="file" />
元素来上传文件。
但是接受类型不能限制为文件类型*.xmind
,请问有什么解决办法吗?
我的努力:
使用accept="application/pdf"
属性可以限制文件类型为*.pdf。
我搜索了一下*.xmind的MIME类型,好像是application/x-xmind
(Ref: https://www.digipres.org/formats/mime-types/).
但是使用 accept="application/x-xmind"
属性不起作用。
有什么想法吗?
只需这样做:
<input type="file" accept=".xmind">
现在我正在开发一个 html 页面,该页面想要上传一个 XMind 文件(扩展名为 *.xmind)。
我现在正在制作一个 <input type="file" />
元素来上传文件。
但是接受类型不能限制为文件类型*.xmind
,请问有什么解决办法吗?
我的努力:
使用accept="application/pdf"
属性可以限制文件类型为*.pdf。
我搜索了一下*.xmind的MIME类型,好像是application/x-xmind
(Ref: https://www.digipres.org/formats/mime-types/).
但是使用 accept="application/x-xmind"
属性不起作用。
有什么想法吗?
只需这样做:
<input type="file" accept=".xmind">