19

我在使用模型中的数据注释来指定验证 DateTime 输入值的错误消息时遇到问题。我真的很想使用正确的 DateTime 验证器(而不是 Regex 等)。

[DataType(DataType.DateTime, ErrorMessage = "A valid Date or Date and Time must be entered eg. January 1, 2014 12:00AM")]
public DateTime Date { get; set; }

我仍然收到“字段日期必须是日期”的默认日期验证消息。

我错过了什么吗?

4

5 回答 5

39

将以下键添加到 Global.asax 中的 Application_Start()

ClientDataTypeModelValidatorProvider.ResourceClassKey = "YourResourceName";
DefaultModelBinder.ResourceClassKey = "YourResourceName";

App_GlobalResources文件夹中创建YourResourceName.resx并添加以下键

  • FieldMustBeDate字段 {0} 必须是日期。
  • FieldMustBeNumeric字段 {0} 必须是数字。
  • PropertyValueInvalid值“{0}”对 {1} 无效。
  • PropertyValueRequired值是必需的。
于 2013-07-27T19:21:14.550 回答
14

我找到了一个简单的解决方法。

您可以保持模型不变。

[DataType(DataType.Date)]
public DateTime Date { get; set; }

然后覆盖视图中的 'data-val-date' 属性。

@Html.TextBoxFor(model => model.Date, new
{
    @class = "form-control",
    data_val_date = "Custom error message."
})

或者,如果您想参数化您的消息,您可以使用静态函数String.Format

@Html.TextBoxFor(model => model.Date, new
{
    @class = "form-control",
    data_val_date = String.Format("The field '{0}' must be a valid date.",  
                                    Html.DisplayNameFor(model => model.Date))
})

与资源类似:

@Html.TextBoxFor(model => model.Date, new
{
    @class = "form-control",
    data_val_date = String.Format(Resources.ErrorMessages.Date,  
                                   Html.DisplayNameFor(model => model.Date))
})
于 2014-10-02T23:07:04.823 回答
9

我有一个肮脏的解决方案。

创建自定义模型绑定器:

public class CustomModelBinder<T> : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        if(value != null && !String.IsNullOrEmpty(value.AttemptedValue))
        {
            T temp = default(T);
            try
            {
                temp = ( T )TypeDescriptor.GetConverter(typeof(T)).ConvertFromString(value.AttemptedValue);
            }
            catch
            {
                bindingContext.ModelState.AddModelError(bindingContext.ModelName, "A valid Date or Date and Time must be entered eg. January 1, 2014 12:00AM");
                bindingContext.ModelState.SetModelValue(bindingContext.ModelName, value);
            }

            return temp;
        }
        return base.BindModel(controllerContext, bindingContext);
    }
}

然后在 Global.asax.cs 中:

protected void Application_Start()
{
    //...
    ModelBinders.Binders.Add(typeof(DateTime), new CustomModelBinder<DateTime>());
于 2013-03-13T04:43:58.107 回答
1

我通过在我的操作方法开始时修改 ModelState 集合中的错误来解决这个问题。像这样的东西:

    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult MyAction(MyModel model)
    {
        ModelState myFieldState = ModelState["MyField"];
        DateTime value;
        if (!DateTime.TryParse(myFieldState.Value.AttemptedValue, out value))
        {
            myFieldState.Errors.Clear();
            myFieldState.Errors.Add("My custom error message");
        }

        if (ModelState.IsValid)
        {
            // Do stuff
        }
        else
        {
            return View(model);
        }
    }
于 2015-05-28T16:37:11.740 回答
0

尝试使用正则表达式注释,例如

[Required]
[RegularExpression("\d{4}-\d{2}-\d{2}(?:\s\d{1,2}:\d{2}:\d{2})?")]
public string Date { get; set; }

检查这个

于 2013-03-13T04:39:56.053 回答