DefaultModelBinder实现不填充模型- ASP.Net MVC 2



我有一个非常简单的DefaultModelBinder实现,我需要它来触发一些自定义验证。

public class MyViewModelBinder : DefaultModelBinder 
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        ModelStateDictionary modelState = bindingContext.ModelState;
        var model = (MyViewModel)base.BindModel(controllerContext, bindingContext);
        var result = ValidationFactory.ForObject<MyViewModel>().Validate(model);
        CustomValidation(result, modelState);
        return model;
    }
}

MyViewModel是一个公共密封类。模型绑定器在Global中注册。

ModelBinders.Binders.Add(typeof(MyViewModel), new MyViewModelBinder());

问题是模型永远不会被填充!但是MVC默认的模型绑定器(我在global.asax中删除了注册)工作得很好。

这是视图HTML:

    <table>
        <tr>
            <td><label for="Name">Name</label></td>
            <td><input id="Name" name="Name" type="text" value="" /></td>
        </tr>
        <tr>
            <td><label for="Code">Code</label></td>
            <td><input id="Code" name="Code" type="text" value="" /></td>
        </tr>
    </table> </div>

每个字段匹配模型的一个属性。

根据您提供的信息,我无法重现该问题。我是这么做的。

视图模型:

public sealed class MyViewModel
{
    public string Name { get; set; }
    public string Code { get; set; }
}

控制器:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }
    [HttpPost]
    public ActionResult Index(MyViewModel model)
    {
        // at this stage the model is populated perfectly fine
        return View();
    }
}

索引视图:

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <% using (Html.BeginForm()) { %>
        <table>
            <tr>
                <td><label for="Name">Name</label></td>
                <td><input id="Name" name="Name" type="text" value="" /></td>
            </tr>
            <tr>
                <td><label for="Code">Code</label></td>
                <td><input id="Code" name="Code" type="text" value="" /></td>
            </tr>
        </table>
        <input type="submit" value="OK" />
    <% } %>
</body>
</html>

模型绑定器:

public class MyViewModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var model = (MyViewModel)base.BindModel(controllerContext, bindingContext);
        // at this stage the model is populated perfectly fine
        return model;
    }
}

那么现在的问题是,你的代码与我的代码有什么不同,在那些CustomValidationValidate方法中是什么?

相关内容

  • 没有找到相关文章

最新更新