18

我正在尝试为 MVC 4 构建一个自定义模型绑定器,它将继承自DefaultModelBinder. 我希望它拦截任何绑定级别的任何接口,尝试从名为AssemblyQualifiedName.

这是我到目前为止的内容(简化):

public class MyWebApplication : System.Web.HttpApplication
{
    protected void Application_Start()
    {
        ModelBinders.Binders.DefaultBinder = new InterfaceModelBinder();
    }
}

public class InterfaceModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, 
        ModelBindingContext bindingContext)
    {
        if (bindingContext.ModelType.IsInterface 
            && controllerContext.RequestContext.HttpContext.Request.Form.AllKeys.Contains("AssemblyQualifiedName"))
        {
            ModelBindingContext context = new ModelBindingContext(bindingContext);

            var item = Activator.CreateInstance(
                Type.GetType(controllerContext.RequestContext.HttpContext.Request.Form["AssemblyQualifiedName"]));

            Func<object> modelAccessor = () => item;
            context.ModelMetadata = new ModelMetadata(new DataAnnotationsModelMetadataProvider(),
                bindingContext.ModelMetadata.ContainerType, modelAccessor, item.GetType(), bindingContext.ModelName);

            return base.BindModel(controllerContext, context);
        }

        return base.BindModel(controllerContext, bindingContext);
    }
}

示例 Create.cshtml 文件(简化):

@model Models.ScheduledJob

@* Begin Form *@
@Html.Hidden("AssemblyQualifiedName", Model.Job.GetType().AssemblyQualifiedName)

@Html.Partial("_JobParameters")
@* End Form *@

上面的部分_JobParameters.cshtml查看了Model.Job的属性并构建了编辑控件,类似于@Html.EditorFor(),但带有一些额外的标记。该ScheduledJob.Job属性是类型IJob(接口)。

示例 ScheduledJobsController.cs(简化):

[HttpPost]
public ActionResult Create(ScheduledJob scheduledJob)
{
    //scheduledJob.Job here is not null, but has only default values
}

当我保存表单时,它会正确解释对象类型并获取一个新实例,但对象的属性没有设置为适当的值。

我还需要做什么来告诉默认绑定器接管指定类型的属性绑定?

4

2 回答 2

26

这篇文章告诉我,我让模型绑定器过于复杂。以下代码有效:

public class InterfaceModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        if (bindingContext.ModelType.IsInterface)
        {
            Type desiredType = Type.GetType(
                EncryptionService.Decrypt(
                    (string)bindingContext.ValueProvider.GetValue("AssemblyQualifiedName").ConvertTo(typeof(string))));
            bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(null, desiredType);
        }

        return base.BindModel(controllerContext, bindingContext);
    }
}
于 2013-05-25T15:53:47.243 回答
1

使用 MVC 4 很容易覆盖消息,如果这是您在自定义模型绑定器中可能需要的全部内容:

    protected void Application_Start(object sender, EventArgs e)
    {
        //set mvc default messages, or language specifc
        ClientDataTypeModelValidatorProvider.ResourceClassKey = "ValidationMessages";
        DefaultModelBinder.ResourceClassKey = "ValidationMessages";
    }

然后创建以ValidationMessages如下条目命名的资源文件:

NAME: FieldMustBeDate 
VALUE: The field {0} must be a date. 
NAME: FieldMustBeNumeric 
VALUE: The field {0} must be a number

.

我们这样做是因为合规失败。我们的安全扫描不喜欢javascript注入会回来并出现在验证消息中并执行。通过使用此实现,我们将覆盖返回用户提供值的默认消息。

于 2014-11-21T18:45:06.413 回答