ASP.NET MVC2 - 自定义模型绑定器示例

时间:2010-02-26 18:30:37

标签: asp.net-mvc asp.net-mvc-2 modelbinders custom-model-binder

我试图找到一些为我需要处理的唯一绑定场景构建自定义模型绑定器的示例,但我发现的所有文章都是针对MVC2中不再相关的旧版MVC。我一直在引用DefaultModelBinder源代码,试图对我需要做的事情有一个总体感觉,但它比我的场景更复杂,而且我无法隔离我需要实现的特定逻辑。

我的目标是获取一组Checkbox / Textbox对,并且对于所有Checked对,我想创建一个Checkbox值和相关Textbox值的键/值对。在聚合这些数据之后,我需要对集​​合进行一些字符串序列化,这样我就可以将它存储在所需Model类型的字符串属性中。我已经从表单中以可管理的格式发送数据,这将允许我将给定的复选框与特定的文本框相关联,这只是找出如何获取所需的所有部分的问题。

有没有人知道一些可以让我开始构建自定义模型绑定器的最新教程?

2 个答案:

答案 0 :(得分:12)

我不知道为什么你认为自从MVC 1以来关于自定义模型绑定器已经发生了很多变化。但如果我明白你要做什么,那应该相当容易。

public class CustomModelBinder : DefaultModelBinder {
    public override object BindModel(ControllerContext controllerContext, 
        ModelBindingContext bindingContext) {

        NameValueCollection form = controllerContext.HttpContext.Request.Form;
        //get what you need from the form collection

        //creata your model
        SomeModel myModel = new SomeMode();
        myModel.Property = "value";
        //or add some model errors if you need to
        ModelStateDictionary mState = bindingContext.ModelState;
        mState.Add("Property", new ModelState { });
        mState.AddModelError("Property", "There's an error.");

        return myModel; //return your model
    }
}

你的行动:

public ActionResult Contact([ModelBinder(typeof(CustomModelBinder))]SomeModel m){
    //...
}

那是您要找的那种信息吗?

答案 1 :(得分:1)

在我的博客上查看Custom MVC Model binders的几个示例。