7

我正在开发一个不是我创建的 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 );
}
4

3 回答 3

2

NoTrim 看起来不错,但正是该[Required]属性会拒绝空格。

RequiredAttribute 属性指定当验证表单上的字段时,该字段必须包含一个值。如果属性为 null、包含空字符串 ("") 或仅包含空白字符,则会引发验证异常。

http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.requiredattribute.aspx

要解决此问题,您可以创建自己的属性版本或使用 RegexAttribute。我不确定该AllowEmptyStrings属性是否有效。

于 2012-07-11T21:43:04.720 回答
0

我只是将“”替换为“-1”或“-”之类的东西。如果这是唯一的情况,当然……

于 2012-07-11T22:33:44.920 回答
0

这个怎么样?

[MinLength(2, ErrorMessage = "State is required")]
[DisplayFormat(ConvertEmptyStringToNull=false)]
于 2013-07-23T17:57:03.613 回答