我写了一个实现的类IModelBinder
(见下文)。此类处理具有 3 个输入的表单,每个输入代表日期值(日、月、年)的一部分。我还写了一个相应的HtmlHelper
扩展方法来打印表单上的三个字段。
当日、月、年输入被赋予可以解析的值,但单独的值验证失败时,一切都很好 - 字段被重新填充并且页面按预期提供给用户。
但是,当提供了无效值并且DateTime
无法解析 a 时,我会返回任意值DateTime
,以便在返回给用户时重新填充字段。
我阅读了人们遇到的类似问题,他们似乎都是由于缺乏电话SetModelValue()
。我没有这样做,但是即使添加了问题也没有解决。
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
string modelName = bindingContext.ModelName;
string monthKey = modelName + ".Month";
string dayKey = modelName + ".Day";
string yearKey = modelName + ".Year";
//get values submitted on form
string year = bindingContext.ValueProvider[yearKey].AttemptedValue;
string month = bindingContext.ValueProvider[monthKey].AttemptedValue;
string day = bindingContext.ValueProvider[dayKey].AttemptedValue;
DateTime parsedDate;
if (DateTime.TryParse(string.Format(DateFormat, year, month, day), out parsedDate))
return parsedDate;
//could not parse date time report error, return current date
bindingContext.ModelState.AddModelError(yearKey, ValidationErrorMessages.DateInvalid);
//added this after reading similar problems, does not fix!
bindingContext.ModelState.SetModelValue(yearKey, bindingContext.ValueProvider[modelName]);
return DateTime.Today;
}
当我尝试为日期的 Year 属性创建一个文本框时,会引发空引用异常,但奇怪的是不是为 Day 或 Month!
谁能解释为什么会这样?