gpt4 book ai didi

javascript - Dropzone Js,查看当前dropzone里面有多少文件

转载 作者:搜寻专家 更新时间:2023-11-01 04:51:30 24 4
gpt4 key购买 nike

我使用 dropzone js ( http://www.dropzonejs.com/ ) 上传文件,但我需要知道 Dropzone 中当前有多少文件,用户可能已经删除了一些但我需要知道在我之前是否至少有 1 个文件提交用户正在填写的整个表格。

如果我使用 myDropzone.length 它仍然会计算从 dropzone 中删除的文件,所以如果用户添加 2 个文件然后删除其中一个文件,.length 将 = 2,在这种情况下我需要知道在这种特殊情况下实际长度为 1

最佳答案

Dropzone 提供多种功能来仅获取接受、拒绝、排队或上传文件。

// To access only accepted files count (answer of question)
myDropzone.getAcceptedFiles().length


// To access all files count
myDropzone.files.length
// To access all rejected files count
myDropzone.getRejectedFiles().length
// To access all queued files count
myDropzone.getQueuedFiles().length
// To access all uploading files count
myDropzone.getUploadingFiles().length

从文档API获取here

关于javascript - Dropzone Js,查看当前dropzone里面有多少文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40293832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com