我想将可以在存储桶中删除的文件数量限制为单个文件。我发现了validation指令和itemLimit属性。但是,当我将其设置为1时,它实际上没有做任何事情。这是我用来创建精细上传实例的代码:
感谢您的帮助!
$(this).fineUploader({
request: {
endpoint: 'api/endpoint.php'
},
validation: {
itemLimit: 1
},
autoUpload: true,
text: {
uploadButton: 'DROP ASSET HERE',
},
debug: false
})
.on('complete', function(event, id, fileName, response) {
});
答案 0 :(得分:4)
将multiple: false,
添加到代码中,这将限制为单个文件。