DropzoneJS 是哪一个文件?
DropzoneJS which one file is?
所以,我使用 DropZoneJS 为个别产品上传图片。但是我在数据库中为图像制作了 6 列
"image_1" "image_1thumb" "image_2" "image_2thumb" "image_3" "image_3thumb"
我制作脚本用于在主机上上传图片并将图片转换为缩略图...
所以我需要什么。我如何检测第一张、第二张和第三张图像?
我想在 "image_1" 和 "image_1thumb" 中写入第一个图像名称,在 "image_2" 和 "image_2thumb" 中写入第二个图像名称,在 "image_3" 和 [=22= 中写入第三个图像名称]
dropzone docs 提到了一系列事件...其中一个是
complete
哪个returns当前文件
所以对于 Dropzone post processqueue 事件
this.on("complete", function (file) {
// this complete will be fired 3 times...in your case
});
您可以在此处操作文件名,或者您可以按顺序存储然后更新您的数据库
所以,我使用 DropZoneJS 为个别产品上传图片。但是我在数据库中为图像制作了 6 列
"image_1" "image_1thumb" "image_2" "image_2thumb" "image_3" "image_3thumb"
我制作脚本用于在主机上上传图片并将图片转换为缩略图...
所以我需要什么。我如何检测第一张、第二张和第三张图像? 我想在 "image_1" 和 "image_1thumb" 中写入第一个图像名称,在 "image_2" 和 "image_2thumb" 中写入第二个图像名称,在 "image_3" 和 [=22= 中写入第三个图像名称]
dropzone docs 提到了一系列事件...其中一个是
complete
哪个returns当前文件 所以对于 Dropzone post processqueue 事件
this.on("complete", function (file) {
// this complete will be fired 3 times...in your case
});
您可以在此处操作文件名,或者您可以按顺序存储然后更新您的数据库