问题描述
我目前有一个 HTML 表单,用户填写他们想发布的广告的详细信息。我现在想要添加一个 dropzone,用于上传要销售的项目的图像。我发现 dropzone.js 似乎做了大部分我需要的。但是,当查看文档时,您需要将整个表单的类指定为’dropzone'(而不仅仅是输入元素) 。这意味着我的整个表单都成为 dropzone 。是否可以在我的表单的一部分中使用 dropzone,即仅将元素指定为类 dropzone,而不是整个表单?
我可以使用单独的表单,但我希望用户能够使用一个按钮提交它。
或者,是否有另一个 Library 可以做到这一点?
非常感谢
最佳解决方案
这是另一种方法:在您的表单中添加一个 div
,其名称为 dropzone,并以编程方式实现 dropzone 。
HTML:
<div id="dZUpload" class="dropzone">
<div class="dz-default dz-message"></div>
</div>
JQuery 的:
$(document).ready(function () {
Dropzone.autoDiscover = false;
$("#dZUpload").dropzone({
url: "hn_SimpeFileUploader.ashx",
addRemoveLinks: true,
success: function (file, response) {
var imgName = response;
file.previewElement.classList.add("dz-success");
console.log("Successfully uploaded :" + imgName);
},
error: function (file, response) {
file.previewElement.classList.add("dz-error");
}
});
});
注意:禁用自动发现,否则 Dropzone 将尝试附加两次
博客文章:Dropzone js + Asp.net: Easy way to upload Bulk images
次佳解决方案
Enyo’s tutorial 是优秀的。
我发现本教程中的示例脚本适用于嵌入在 dropzone 中的按钮 (即表单元素) 。如果您希望将按钮放在表单元素之外,我可以使用点击事件来完成此操作:
首先,HTML:
<form id="my-awesome-dropzone" action="/upload" class="dropzone">
<div class="dropzone-previews"></div>
<div class="fallback"> <!-- this is the fallback if JS isn't working -->
<input name="file" type="file" multiple />
</div>
</form>
<button type="submit" id="submit-all" class="btn btn-primary btn-xs">Upload the file</button>
然后,脚本标签….
Dropzone.options.myAwesomeDropzone = { // The camelized version of the ID of the form element
// The configuration we've talked about above
autoProcessQueue: false,
uploadMultiple: true,
parallelUploads: 25,
maxFiles: 25,
// The setting up of the dropzone
init: function() {
var myDropzone = this;
// Here's the change from enyo's tutorial...
$("#submit-all").click(function (e) {
e.preventDefault();
e.stopPropagation();
myDropzone.processQueue();
});
}
}
第三种解决方案
“dropzone.js” 是用于上传图像的最常用库。如果您想要将”dropzone.js” 作为您表单的一部分,您应该执行以下步骤:
1) 客户端:
HTML:
<form action="/" enctype="multipart/form-data" method="POST">
<input type="text" id ="Username" name ="Username" />
<div class="dropzone" id="my-dropzone" name="mainFileUploader">
<div class="fallback">
<input name="file" type="file" multiple />
</div>
</div>
</form>
<div>
<button type="submit" id="submit-all"> upload </button>
</div>
JQuery 的:
<script>
Dropzone.options.myDropzone = {
url: "/Account/Create",
autoProcessQueue: false,
uploadMultiple: true,
parallelUploads: 100,
maxFiles: 100,
acceptedFiles: "image/*",
init: function () {
var submitButton = document.querySelector("#submit-all");
var wrapperThis = this;
submitButton.addEventListener("click", function () {
wrapperThis.processQueue();
});
this.on("addedfile", function (file) {
// Create the remove button
var removeButton = Dropzone.createElement("<button class='btn btn-lg dark'>Remove File</button>");
// Listen to the click event
removeButton.addEventListener("click", function (e) {
// Make sure the button click doesn't submit the form:
e.preventDefault();
e.stopPropagation();
// Remove the file preview.
wrapperThis.removeFile(file);
// If you want to the delete the file on the server as well,
// you can do the AJAX request here.
});
// Add the button to the file preview element.
file.previewElement.appendChild(removeButton);
});
this.on('sendingmultiple', function (data, xhr, formData) {
formData.append("Username", $("#Username").val());
});
}
};
</script>
2) 服务器端:
ASP.Net MVC
[HttpPost]
public ActionResult Create()
{
var postedUsername = Request.Form["Username"].ToString();
foreach (var imageFile in Request.Files)
{
}
return Json(new { status = true, Message = "Account created." });
}
第四种方案
我有完全相同的问题,发现瓦兰·辛亚伊的答案是唯一一个解决了原来问题的答案。那个答案可以简化,所以这里有一个更简单的版本。
步骤是:
-
创建一个正常的表单 (不要忘记方法和 enctype args,因为这不会被 dropzone 处理) 。
-
使用
class="dropzone"
(这就是 Dropzone 附加它) 和id="yourDropzoneName"
(用于更改选项) 放在一个 div 里面。 -
设置 Dropzone 的选项,设置要发布表单和文件的 URL,停用 autoProcessQueue(因此只有在用户按下’submit’ 时才会发生),并允许多次上传 (如果需要) 。
-
将 init 函数设置为使用 Dropzone,而不是单击提交按钮时的默认行为。
-
仍然在 init 函数中,使用”sendingmultiple” 事件处理程序沿文件发送表单数据。
Voilà!您现在可以使用正常表单 ($ _POST 和 $ _FILES) 检索数据 (在 upload.php 中会发生这种情况)
HTML
<form action="upload.php" enctype="multipart/form-data" method="POST">
<input type="text" id ="firstname" name ="firstname" />
<input type="text" id ="lastname" name ="lastname" />
<div class="dropzone" id="myDropzone"></div>
<button type="submit" id="submit-all"> upload </button>
</form>
JS
Dropzone.options.myDropzone= {
url: 'upload.php',
autoProcessQueue: false,
uploadMultiple: true,
parallelUploads: 5,
maxFiles: 5,
maxFilesize: 1,
acceptedFiles: 'image/*',
addRemoveLinks: true,
init: function() {
dzClosure = this; // Makes sure that 'this' is understood inside the functions below.
// for Dropzone to process the queue (instead of default form behavior):
document.getElementById("submit-all").addEventListener("click", function(e) {
// Make sure that the form isn't actually being sent.
e.preventDefault();
e.stopPropagation();
dzClosure.processQueue();
});
//send all the form data along with the files:
this.on("sendingmultiple", function(data, xhr, formData) {
formData.append("firstname", jQuery("#firstname").val());
formData.append("lastname", jQuery("#lastname").val());
});
}
}
第五种方案
除了 sqram 所说,Dropzone 还有一个额外的无证选项,”hiddenInputContainer” 。所有您需要做的是将此选项设置为要添加隐藏文件字段的窗体的选择器。和瞧! Dropzone 通常添加到身体的”.dz-hidden-input” 文件字段神奇地移动到您的表单中。不改变 Dropzone 的源代码。
现在,当这个工作将 Dropzone 文件域移动到你的表单中时,该字段没有名称。所以你需要添加:
_this.hiddenFileInput.setAttribute("name", "field_name[]");
到这个行后面的 dropzone.js:
_this.hiddenFileInput = document.createElement("input");
围绕线 547 。
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。