模型通过ajax绑定和发布表单

时间:2011-05-27 16:29:56

标签: asp.net-mvc-3 c#-4.0

我想通过ajax调用发布一个表单也将模型传递给action方法,但是想通过json获取Model错误。我怎么能这样做?

2 个答案:

答案 0 :(得分:3)

您可以编写自定义操作过滤器:

public class HandleJsonErrors : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        var modelState = (filterContext.Controller as Controller).ModelState;
        if (!modelState.IsValid)
        {
            // if the model is not valid prepare some JSON response
            // including the modelstate errors and cancel the execution
            // of the action.
            // TODO: This JSON could be further flattened/simplified
            var errors = modelState
                .Where(x => x.Value.Errors.Count > 0)
                .Select(x => new
                {
                    x.Key,
                    x.Value.Errors
                });
            filterContext.Result = new JsonResult
            {
                Data = new { isvalid = false, errors = errors }
            };
        }
    }
}

然后付诸行动。

型号:

public class MyViewModel
{
    [StringLength(10, MinimumLength = 5)]
    public string Foo { get; set; }
}

控制器:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }

    [HttpPost]
    [HandleJsonErrors]
    public ActionResult Index(MyViewModel model)
    {
        // if you get this far the model was valid => process it
        // and return some result
        return Json(new { isvalid = true, success = "ok" });
    }
}

最后请求:

$.ajax({
    url: '@Url.Action("Index")',
    type: 'POST',
    contentType: 'application/json; charset=utf-8',
    data: JSON.stringify({
        foo: 'abc'
    }),
    success: function (result) {
        if (!result.isvalid) {
            alert(result.errors[0].Errors[0].ErrorMessage);
        } else {
            alert(result.success);
        }
    }
});

答案 1 :(得分:1)

这样的东西?

  $.ajax({
                    type: "POST",
                    url: $('#dialogform form').attr("action"),
                    data: $('#dialogform form').serialize(),
                    success: function (data) {
                        if(data.Success){
                          log.info("Successfully saved");
                          window.close();
                        }
                        else {
                          log.error("Save failed");
                          alert(data.ErrorMessage);
                    },
                    error: function(data){
                        alert("Error");
                    }
                });


    [HttpPost]
    public JsonResult SaveServiceReport(Model model)
    {
        try
        {
            //
        }
        catch(Exception ex)
        {
            return Json(new AdminResponse { Success = false, ErrorMessage = "Failed" }, JsonRequestBehavior.AllowGet);
        }
相关问题