0

是否可以在使用 javascript 提交表单后将模型状态错误加载到相同的模式对话框中?

我的代码是这样的:

控制器:

public ActionResult Create(MyModel model){
     if(ModelState.isValid){
           // DB Save
           return RedirectToAction("Index");
     }
     else{
           return View(model);
     }
}

阿贾克斯方法

$.ajax({
       type: 'POST',
       url: '/Receipt/Create',
       cache: false,
       data: $("#CreateForm").serialize(),
       success: function (e) { window.location="/Controller/Action"; },
       error: function (e) { e.preventDefault(); /*Code here to load model error into page*/ }                
});
4

2 回答 2

1

我今天已经解决了这个问题,就像这样

public ActionResult Create(MyModel model){
 if(ModelState.isValid){
       // DB Save
       return RedirectToAction("Index");
 }
 else{
       return PartialView("_myPartialForm",model);
 }
}

$.ajax({
   type: 'POST',
   url: '/Receipt/Create',
   cache: false,
   data: $("#CreateForm").serialize(),
   success: function (e) { 
if(e.Valid){
    window.location="/Controller/Action";}
else{
    return false;
  } },
   error: function (e) { e.preventDefault();$("#mymodal").load(e) } 
 });

就像 jmrnet 所说的那样。谢谢

于 2013-01-16T15:45:54.997 回答
0

我能够通过使用Ajax.BeginForm带有UpdateTargetIdAjaxOption 的方法来实现这一点。这是我使用的代码。它并不完全适合您正在做的事情,但它应该为您指明正确的方向。

在视图中:

@using (Ajax.BeginForm(new AjaxOptions(){ UpdateTargetId="loginresult" }))
{
    <b>User:</b><br />
    @Html.TextBoxFor(m => m.UserName)<br />
    <br />
    <b>Password:</b><br />
    @Html.PasswordFor(m => m.Password)<br />
    <div id="loginresult"><br /></div>
    <input id="Button1" type="submit" value="Login" class="touch-button" />
}

在控制器中:

[HttpPost]
public ActionResult Index(LoginModel model)
{
    //Execute Log-in code.
    //Capture any errors and put them in the model.LoginResponse property.

    return PartialView("LoginResult", model);
}

LoginResult局部视图中:

@model MerchantMobile.Models.LoginModel

@if (String.IsNullOrEmpty(Model.LoginResponse))
{
    Html.RenderPartial("_AjaxRedirect", Url.Content("~/Home/Activity"));
}
else
{
    <div id="loginresult">
        <div style="color: Red; font-weight: bold;">
            @Model.LoginResponse
        </div>
    </div>
}

您可以轻松地将 替换为loginresult <div>jquery ui 用来弹出模式对话框的对话框,而不仅仅是在 div 中显示一些文本。

希望这可以帮助!

于 2013-01-16T15:28:59.617 回答