gpt4 book ai didi

javascript - Dropzone.js v4+ - 显示服务器上的现有文件,限制文件数量和其他功能

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:23:07 24 4
gpt4 key购买 nike

如何将服务器上的现有文件添加到 dropzone 中,同时正确使用所有功能和正确的样式?

最佳答案

我写了一个添加文件的函数:addCustomFile(file, thumbnail_url , responce)

由版本提供支持:4.0.1 稳定

正确工作:maxFiles 限制、事件 maxfilesexceeded、事件成功和其他

$("#dropzone-images").dropzone({
url: "...",
paramName: 'image_temp',
maxFiles: 1,
init: function () {
this.addCustomFile = function(file, thumbnail_url , responce){
// Push file to collection
this.files.push(file);
// Emulate event to create interface
this.emit("addedfile", file);
// Add thumbnail url
this.emit("thumbnail", file, thumbnail_url);
// Add status processing to file
this.emit("processing", file);
// Add status success to file AND RUN EVENT success from responce
this.emit("success", file, responce , false);
// Add status complete to file
this.emit("complete", file);
}

this.addCustomFile(
// File options
{
// flag: processing is complete
processing: true,
// flag: file is accepted (for limiting maxFiles)
accepted: true,
// name of file on page
name: "The name",
// image size
size: 12345,
// image type
type: 'image/jpeg',
// flag: status upload
status: Dropzone.SUCCESS
},
// Thumbnail url
"http://.../img.jpg",
// Custom responce for event success
{
status: "success"
}
);
}
});

关于javascript - Dropzone.js v4+ - 显示服务器上的现有文件,限制文件数量和其他功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31627154/

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