我正在测试 uploadifive 插件文件上传限制,我似乎无法让它接受 .docx 文件。在文档(http://www.uploadify.com/documentation/uploadifive/filetype/)中,我按照说明操作(排除一个小错误 - 管道“|”字符不起作用)并使用了它引用的媒体类型到(http://www.iana.org/assignments/media-types/media-types.xhtml)。似乎没有其他文件类型会导致问题,例如 .doc、.xlsx。
有没有解决方案,我已经检查了多个来源,并且据我所知,mime 类型(application/vnd.openxmlformats-officedocument.wordprocessingml.document)是否正确?
<h1>UploadiFive Demo</h1>
<form>
<div id="queue"></div>
<input id="file_upload" name="file_upload" type="file" multiple="true">
<a style="position: relative; top: 8px;" href="javascript:$('#file_upload').uploadifive('upload')">Upload Files</a>
</form>
<script type="text/javascript">
$(function() {
$('#file_upload').uploadifive({
'auto' : false,
'checkScript' : 'check-exists.php',
'queueID' : 'queue',
'uploadScript' : 'uploadifive.php',
'fileType' : ['application\/msword', 'application\/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application\/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml','application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet'],
'onUploadComplete' : function(file, data) { console.log(data); },
'onError' : function(errorType)
{
alert('Error: ' + errorType);
},
});
});
</script>