通过ajax进行模型绑定和发布形式

| 我想通过ajax调用发布表单,模型也将被传递到action方法中,但是想通过json获得模型错误。我怎样才能做到这一点?     
已邀请:
        您可以编写一个自定义操作过滤器:
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);
        }
    }
});
    
        像这样吗
  $.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);
        }
    

要回复问题请先登录注册