我希望网站上的Excel文件在点击时在Excel中打开,不会保存在桌面上,或者在浏览器中嵌入打开等等。现在显然这一切都取决于每个用户的所有配置,但最好的是什么内容类型和其他设置,以实现大部分时间?
答案 0 :(得分:823)
对于BIFF .xls文件
application/vnd.ms-excel
对于Excel2007及更高版本的.xlsx文件
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
答案 1 :(得分:33)
application/vnd.ms-excel
vnd class
/特定供应商答案 2 :(得分:11)
请记住,file.getContentType
也可以输出 application / octet-stream ,而不是必需的 application / vnd.openxmlformats-officedocument.spreadsheetml.sheet 当您尝试上传已打开的文件时。