我想在blueimp / jQuery-File-Upload中使用PDF / Doc / Docx / txt格式上传多个文件

时间:2015-08-11 11:52:38

标签: zend-framework jquery-file-upload blueimp

我正在使用带有PHP Zend框架的blueimp / jQuery-File-Upload。 我已成功设置插件,但现在我希望插件应该允许上传PDF,doc,docx和txt文件格式。

任何文件中是否有任何常量设置?

有没有办法找到blueimp jquery文件上传的文档。

请让我现在允许文件格式。

2 个答案:

答案 0 :(得分:0)

请参阅

部分

How to restrict the file selection dialog to show only specific file types? 它显示了如何限制文件类型。

皮特

答案 1 :(得分:0)

搜索acceptedFileTypes

acceptFileTypes: /(\.|\/)(pdf|doc?x|txt)$/i,

代码看起来像

$('#fileupload').fileupload({
                autoUpload: false,
                type: 'POST',
                url: url,
                dataType: 'json',
                content: {image: 'fff'},
                headers: headers.headers,
                disableImageResize: /Android(?!.*Chrome)|Opera/.test(window.navigator.userAgent),
                maxFileSize: 5000000,
                acceptFileTypes: /(\.|\/)(pdf|doc?x|txt)$/i,

            });