Base64 数据类型

zaz*_*iki 2 javascript base64

作为我正在构建的应用程序的一部分,有一个用于存储为 Base64 字符串的文件的下载选项。因此,我需要将正确的数据类型与正确的文件配对,以便可以下载它们。

我认为我已经把这个内容充实了。但是,似乎 docx 文件作为 doc 文件下载,xlsx 文件作为 xls 文件下载。有没有办法以正确的文件类型下载这些文件?该公司已屏蔽大多数包含与此相关信息的网站。

对于 docx 我有data:application/msword

对于 xlsx 我有data:application/vnd.ms-excel

Jos*_*rez 5

对于.xlst: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

对于.docx:application/vnd.openxmlformats-officedocument.wordprocessingml.document

请参阅Excel 文件的正确内容类型是什么?

来自http://filex.com/faq/office_mime_types.php

Ext    MIME Type
.doc   application/msword
.dot   application/msword
.docx  application/vnd.openxmlformats-officedocument.wordprocessingml.document
.dotx  application/vnd.openxmlformats-officedocument.wordprocessingml.template
.docm  application/vnd.ms-word.document.macroEnabled.12
.dotm  application/vnd.ms-word.template.macroEnabled.12
.xls   application/vnd.ms-excel
.xlt   application/vnd.ms-excel
.xla   application/vnd.ms-excel
.xlsx  application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
.xltx  application/vnd.openxmlformats-officedocument.spreadsheetml.template
.xlsm  application/vnd.ms-excel.sheet.macroEnabled.12
.xltm  application/vnd.ms-excel.template.macroEnabled.12
.xlam  application/vnd.ms-excel.addin.macroEnabled.12
.xlsb  application/vnd.ms-excel.sheet.binary.macroEnabled.12
Run Code Online (Sandbox Code Playgroud)