我有一个部分视图,其中包含用于上传文件的文件输入。此视图上的用户将从他们的工作站中选择一个文件并单击上传按钮。上传点击将表单提交给一个动作方法,文件被解析并返回相同的视图以自动填充视图上的一些字段。
一切照原样,运行良好。我正在向现有视图添加一个新要求,如下所示:
要求
用户选择一个文件并单击上传按钮。单击上传按钮后,将向用户显示一个 JavaScript 确认对话框,其中包含两个按钮选项,然后将表单提交给控制器操作方法。这些按钮是“Buffer Run Parsing”和“Normal Parsing”。单击这些按钮中的任何一个都将发布到控制器操作方法。
在发布后的控制器操作方法中,我的目标是捕获他们按下的按钮,并根据按下的按钮相应地选择文件解析逻辑。
问题
我创建了一个 JavaScript 函数,它确实显示了两个按钮,但对话框自动消失并且表单发布到控制器。我希望它不会发布,直到我单击任一按钮进行确认。
这是我正在做的事情:
主视图:
@using (Html.BeginForm("Create", "RunLogEntry", FormMethod.Post, new { id = "form", enctype = "multipart/form-data"}))
{
<div id="main">
@Html.Partial("_RunLogEntryPartialView", Model)
</div>
}
局部视图:
<button name="submit" class="art-button" type="submit" value="Upload" onclick="initUploadDailog();return false;"
style="width: 100px">
Upload</button>
<div id="uploadConfirmation" style="font-size: 10px; font-weight: normal; overflow: scroll;
width: 800px; height: 450px; display: none;">
</div>
JS功能:
function initUploadDailog(e) {
currentForm = $(this).closest('form');
UploadDialog = $("#uploadConfirmation").dialog({
modal: true,
width: 400,
autoOpen: true,
title: 'Please select parsing type for Test Completed Computation',
buttons: {
"Normal Parsing": function () {
$("#hiddenInput").val("Normal");
alert(currentForm.innerHtml());
currentForm.submit();
},
"Buffer Parsing": function () {
$("#hiddenInput").val("Buffer Run");
currentForm.submit();
}
}
});
}
控制器:
[HttpPost]
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(RunLogEntry runLogEntry, String ServiceRequest, string Hour, string Minute, string AMPM,
string submit, IEnumerable<HttpPostedFileBase> file, String AssayPerformanceIssues1, List<string> Replicates)
{
}