我正在开发一个不是我创建的 ASP.NET MVC 2 应用程序。应用程序中的所有输入字段都在模型绑定期间被修剪。但是,我想要一个 NoTrim 属性来防止某些字段被修剪。
例如,我有以下状态下拉字段:
<select name="State">
<option value="">Select one...</option>
<option value=" ">International</option>
<option value="AA">Armed Forces Central/SA</option>
<option value="AE">Armed Forces Europe</option>
<option value="AK">Alaska</option>
<option value="AL">Alabama</option>
...
问题是当用户选择“国际”时,我会收到验证错误,因为两个空格已被修剪,并且状态是必填字段。
这是我想做的事情:
[Required( ErrorMessage = "State is required" )]
[NoTrim]
public string State { get; set; }
到目前为止,这是我所拥有的属性:
[AttributeUsage( AttributeTargets.Property, AllowMultiple = false )]
public sealed class NoTrimAttribute : Attribute
{
}
在 Application_Start 中设置了一个自定义模型绑定器:
protected void Application_Start()
{
ModelBinders.Binders.DefaultBinder = new MyModelBinder();
...
这是进行修剪的模型活页夹的一部分:
protected override void SetProperty( ControllerContext controllerContext,
ModelBindingContext bindingContext,
PropertyDescriptor propertyDescriptor,
object value )
{
if (propertyDescriptor.PropertyType == typeof( String ) && !propertyDescriptor.Attributes.OfType<NoTrimAttribute>().Any() )
{
var stringValue = (string)value;
if (!string.IsNullOrEmpty( stringValue ))
{
value = stringValue.Trim();
}
}
base.SetProperty( controllerContext, bindingContext, propertyDescriptor, value );
}