这是我的自定义模型绑定(bind)器,用于实例化派生类。

public class LocationModalBinder : DefaultModelBinder
{
    protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext,
        Type modelType)
    {
        var type = bindingContext.ModelName + "." + "type";

        Type typeToInstantiate;

        switch ((string) bindingContext.ValueProvider.GetValue(type).RawValue)
        {
            case "store":
            {
                typeToInstantiate = typeof (Store);
                break;
            }
            case "billing":
            {
                typeToInstantiate = typeof(LocationReference);
                break;
            }
            case "alternate":
            {
                typeToInstantiate = typeof(Address);
                break;
            }
            default:
            {
                throw new Exception("Unknown location identifier.");
            }
        }

        return base.CreateModel(controllerContext, bindingContext, typeToInstantiate);
    }
}

问题是它没有绑定(bind)子类型的属性。只有基本类型 Location 上的属性。为什么是这样?

最佳答案

我认为调用 return base.CreateModel 没问题,就像您尝试的那样。

我通过在 return base.CreateModel 行之前添加以下内容来解决它:

bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(null, typeToInstantiate);

10-08 03:57