0
public class Dinner
    {
        public string ID { get; set; }
        public string Title { get; set; }
        public Category Category { get; set; }
        public DateTime? DateCreated { get; set; }
    }

该类的模型视图(重要部分)是

public class DinnerModelView
    {
        ...
        [UIHint("DatePicker")]
        [DateTime(ErrorMessage = "Invalida date")]
        public DateTime? DateCreated { get; set; }
    }

DateTimeAttriburte 在哪里

public class DateTimeAttribute : ValidationAttribute
    {
        public DateTimeAttribute () : base (() => "Invalid date") { }
        public DateTimeAttribute(string errorMessage) : base(() => errorMessage) { } 
        public override bool IsValid(object value)
        {
            if (value == null)
                return true;

            bool isValid = false;
            if (value is DateTime)
                isValid = true;

            DateTime tmp;
            if (value is String)
            {
                if(String.IsNullOrEmpty((string)value))
                    isValid = true;
                else
                    isValid = DateTime.TryParse((string)value, out tmp);
            }

            return isValid;
        }
    }

但是模型状态错误仍然显示“值‘xxxx’对 DateCreated 无效。” 我无法替换此消息。为什么?

4

2 回答 2

0

使用protected ValidationAttribute(string errorMessage)而不是 protected ValidationAttribute(System.Func errorMessageAccessor). 后者用于访问资源文件中定义的字符串。查看http://msdn.microsoft.com/en-us/library/cc679238.aspx

于 2009-11-26T10:41:45.147 回答
0

似乎由于 DateCreated 属性是 DateTime 类型,因此 MVC 会在检查您的 DateTimeAttribute 之前以某种方式对其进行验证,从而永远不会收到您的自定义错误消息。

如果您将 DateCreated 更改为字符串,它可能会起作用。但是由于您必须将值保存到数据库中,因此您不想更改 DateCreated 类型。因此,您可以创建一个名为 DateCreatedStr 的新属性,并让用户在此属性中键入数据。在保存数据之前,您可以将(已验证的)数据从 DateCreatedStr 移动到 DateCreated。

我知道这不是一个好方法,但它确实有效!

于 2011-10-20T21:18:03.653 回答