我有一个允许用户上传支持文件的应用程序。我正在使用 cffile 标签来保存文件。
标签如下所示:
<cffile action="upload"
destination="path..."
nameconflict="makeunique"
ACCEPT="application/msword, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
filefield="outline">
上传了一个 .xls 文件并生成了一个错误,指出上传的文件“application/octet-stream”未被接受。
问题是为什么 .xls 电子表格文件被服务器解释为具有“应用程序/八位字节流”mime 类型?