38

我有一个类型:

public class IssueForm
{
    Order Order {get; set;}
    Item Item {get; set;}
    Range Range {get; set;}
}

由于对订单和项目的要求,我创建了一个自定义模型绑定器,但 Range 仍然可以使用默认模型绑定器。

有没有办法从我的自定义模型绑定器中调用默认模型绑定器以返回 Range 对象?我想我只需要正确设置 ModelBindingContext ,但我不知道如何。


编辑

查看第一个评论和答案 - 似乎从默认模型绑定器继承可能很有用。

到目前为止,要为我的设置添加更多细节,我有:

public IssueFormModelBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        Order = //code to pull the OrderNumber from the context and create an Order
        Item = //code to pull the ItemNumber from the context and create an Item

        IssueForm form = IssueFormFactory.Create(Order, Item);

        form.Range = // ** I'd like to replace my code with a call to the default binder **

        return form
    }
}

这可能是一种愚蠢的做法……这是我的第一个模型活页夹。只是指出我当前的实现。


编辑#2

因此,如果我可以像“我已经完成绑定”方法一样挂钩并使用属性调用 Factory 方法,那么覆盖 BindProperty 的答案将起作用。

我想我真的应该看看 DefaultModelBinder 的实现,别再傻了。

4

3 回答 3

52

从 DefaultModelBinder 覆盖 BindProperty:

public class CustomModelBinder:DefaultModelBinder
        {
            protected override void BindProperty( ControllerContext controllerContext, ModelBindingContext bindingContext, System.ComponentModel.PropertyDescriptor propertyDescriptor )
            {
                if (propertyDescriptor.PropertyType == typeof(Range))
                {
                    base.BindProperty(controllerContext, bindingContext, propertyDescriptor);
                }
                // bind the other properties here
            }
        }
于 2009-06-09T14:36:46.087 回答
25

尝试这样的事情:

public class CustomModelBinder :  DefaultModelBinder {
    protected override void BindProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor) {
        if(propertyDescriptor.Name == "Order") {
            ...
            return;
        }

        if(propertyDescriptor.Name == "Item") {
            ...
            return;
        }

        base.BindProperty(controllerContext, bindingContext, propertyDescriptor);
    }

}
于 2009-06-09T14:30:02.043 回答
6

我想我会注册两个不同的自定义模型绑定器,一个用于订单,一个用于项目,并让默认模型绑定器处理 Range 和 IssueForm。

于 2010-03-03T19:48:21.680 回答