好的,我遇到了 MVC 问题,我将控制器/视图附加到多个模型,这些模型包含字符串的受保护内部集。创建这些对象时,我需要能够设置字符串。话虽如此,我在理解 ModelBinding 来实现这一点时遇到了问题。我为 ModelBinder 附加了一个非常基本的设置,但不知道从哪里开始:
/// <summary>
/// Handles binding for the string variables
/// </summary>
public class ActionResultModelBinder : DefaultModelBinder, IModelBinder, ITypedModelBinder
{
#region Properties
/// <summary>
/// Gets the type that this model binder's associated with
/// </summary>
/// <value>
/// The type that this model binder's associated with.
/// </value>
public Type AssociatedType
{
get
{
return typeof(string);
}
}
#endregion Properties
#region Methods
/// <summary>
/// Binds the model by using the specified controller context and binding context.
/// </summary>
/// <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
/// <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
/// <returns>
/// The bound object.
/// </returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="bindingContext "/>parameter is null.</exception>
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var boundValue = base.BindModel(controllerContext, bindingContext);
return bindingContext.ModelType == typeof(string);
}
/// <summary>
/// Sets the specified property by using the specified controller context, binding context, and property value.
/// </summary>
/// <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
/// <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
/// <param name="propertyDescriptor">Describes a property to be set. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.</param>
/// <param name="value">The value to set for the property.</param>
protected override void SetProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value)
{
if (propertyDescriptor.PropertyType == typeof(string))
{
var stringVal = value as string;
}
base.SetProperty(controllerContext, bindingContext, propertyDescriptor, value);
}
#endregion Methods
}