我想我错过了一些简单的东西,但我被一遍又一遍地查看相同的代码蒙蔽了双眼,并且可以使用另一双眼睛。
我有一个包含表单的 MVC 部分视图。
<div class="Clear"></div>
<div class="OverFlow">
@using (Html.BeginForm(null, null, FormMethod.Post, new {id = "formId"}))
{
<div class="ErrorBx1">@Html.GetData()</div>
<table>
@Html.EditorFor(m => m.FormModel, "MyEditorTemplate")
<tr>
<td colspan="2"></td>
<td><input type="image" src="@Images.ResolveDefault("btn-send.jpg")" alt="Send" class="Send" /></td>
</tr>
</table>
}
</div>
此视图还包含一些 Javascript
<script type="text/javascript">
$(function () {
$('#formId').submit(function () {
$.ajax({
cache: false,
url: this.action,
type: this.method,
data: $(this).serialize(),
success: function (res) {
if (res.success) {
alert("success");
closeDialog();
window.parent.specialFunction();
} else {
alert("not success");
$('#someElement').replaceWith(res);
}
}
});
return false;
});
});
</script>
这是执行的控制器方法
[HttpPost]
public ActionResult Index(MyViewModel viewModel)
{
if (CheckSuccess())
{
return Json(new { success = true });
}
return ViewNoLayout("otherView", viewModel);
}
这个视图被加载到一个 jQuery.UI 对话框中。第一次加载对话框时,单击表单上的提交按钮正确执行成功函数 - 弹出警报,关闭对话框并调用父函数。如果我再次弹出对话框并单击提交按钮,则调用将转到服务器并正确处理,但页面会重新加载并且仅显示 JSON 字符串(无警报等)。我假设我缺少某种客户端缓存,或者类似的东西。有任何想法吗?