最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Base64 Data types - Stack Overflow

programmeradmin2浏览0评论

As part of an application I'm building there is a download option for files that are stored as Base64 strings. As such I need to pair the correct data types with the right files so they can be downloaded.

And I thought I had this pretty well fleshed out. However, it seems that docx files are downloading as doc files and xlsx files are downloading as xls files. Is there any way to download these in the correct file types? Most of the sites that have info related to this the pany has blocked.

For docx I have data:application/msword

and for xlsx I have data:application/vnd.ms-excel

As part of an application I'm building there is a download option for files that are stored as Base64 strings. As such I need to pair the correct data types with the right files so they can be downloaded.

And I thought I had this pretty well fleshed out. However, it seems that docx files are downloading as doc files and xlsx files are downloading as xls files. Is there any way to download these in the correct file types? Most of the sites that have info related to this the pany has blocked.

For docx I have data:application/msword

and for xlsx I have data:application/vnd.ms-excel

Share Improve this question asked Feb 9, 2018 at 19:03 zazvornikizazvorniki 3,60023 gold badges78 silver badges125 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 5

For .xlst: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

For .docx: application/vnd.openxmlformats-officedocument.wordprocessingml.document

See What is correct content-type for excel files?

From http://filext./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
发布评论

评论列表(0)

  1. 暂无评论