请考虑以下代码段
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Create(MyViewModel viewModel)
{
if (ModelState.IsValid)
{
//map properties here
using (var context = new MyEntities())
{
context.Users.Add(user);
context.SaveChanges();
}
if (Request.Files.Count > 0)
{
foreach (string fileName in Request.Files)
{
HttpPostedFileBase file = Request.Files[fileName];
if (file != null && file.ContentLength > 0)
{
//do checks and upload file here
}
}
}
}
return RedirectToAction("Index", "Home");
}
表单可以作为独立提交,也可以与文件一起提交,然后上传到服务器。现在我的问题是如果我提交的表单没有任何文件或只有一个文件,那么一切都按预期工作。但是,用户可以一次上传多个文件,这就是问题所在。文件上传但我在数据库中为该特定表单获得了多个条目。例如,如果用户上传三个文件,我将在数据库中获得三个完全相同的条目。
所以我的问题是如何解决这个问题?
在客户端,我正在使用DropZoneJs
并将方法调用为
<script>
Dropzone.autoDiscover = false;
var myDropZone = new Dropzone("#dzUpload", {
url: "/Home/Create",
autoProcessQueue: false,
previewsContainer: ".preview",
});
$("#submit-all").attr("type", "button").on('click', function (e) {
e.preventDefault();
e.stopPropagation();
if (myDropZone.getQueuedFiles().length > 0) {
myDropZone.options.autoProcessQueue = true;
myDropZone.processQueue();
}
else {
$("#dzUpload").submit();
}
});
</script>
我也遇到了 this 问题,但我仍有同样的问题
答案 0 :(得分:1)
看起来uploadMultiple选项会改变行为,因此只有一个请求被发送到服务器。
var myDropZone = new Dropzone("#dzUpload", {
url: "/Home/Create",
autoProcessQueue: false,
previewsContainer: ".preview",
uploadMultiple: true,
});
答案 1 :(得分:0)
所以如果我是对的,那么插件会为你插入插件的每个文件发布表单吗?一种方法是生成一个GUID并将其保存在表单隐藏输入中。因此,每次您的插件发布时,它也会发布此GUID。因此,根据Guid将插入语句更改为upsert(更新或插入)。您还必须将此GUID与其他数据一起保存..
所以每次打算插入检查GUID是否已经存在如果是这样更新它,否则插入新记录。