3 回答
TA贡献2080条经验 获得超4个赞
啊,现在很清楚。您似乎在绑定值时遇到问题。不能在视图上显示它。确实,这是默认模型绑定程序的错误。您可以编写并使用一种定制[DisplayFormat]模型,该模型将考虑模型上的属性。我已经在这里说明了这样的自定义模型活页夹:https : //stackoverflow.com/a/7836093/29407
显然,一些问题仍然存在。这是我的完整设置,可以在ASP.NET MVC 3和4 RC上正常运行。
模型:
public class MyViewModel
{
[DisplayName("date of birth")]
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}", ApplyFormatInEditMode = true)]
public DateTime? Birth { get; set; }
}
控制器:
public class HomeController : Controller
{
public ActionResult Index()
{
return View(new MyViewModel
{
Birth = DateTime.Now
});
}
[HttpPost]
public ActionResult Index(MyViewModel model)
{
return View(model);
}
}
视图:
@model MyViewModel
@using (Html.BeginForm())
{
@Html.LabelFor(x => x.Birth)
@Html.EditorFor(x => x.Birth)
@Html.ValidationMessageFor(x => x.Birth)
<button type="submit">OK</button>
}
在以下位置注册自定义模型活页夹Application_Start:
ModelBinders.Binders.Add(typeof(DateTime?), new MyDateTimeModelBinder());
以及自定义模型活页夹本身:
public class MyDateTimeModelBinder : DefaultModelBinder
{
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var displayFormat = bindingContext.ModelMetadata.DisplayFormatString;
var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
if (!string.IsNullOrEmpty(displayFormat) && value != null)
{
DateTime date;
displayFormat = displayFormat.Replace("{0:", string.Empty).Replace("}", string.Empty);
// use the format specified in the DisplayFormat attribute to parse the date
if (DateTime.TryParseExact(value.AttemptedValue, displayFormat, CultureInfo.InvariantCulture, DateTimeStyles.None, out date))
{
return date;
}
else
{
bindingContext.ModelState.AddModelError(
bindingContext.ModelName,
string.Format("{0} is an invalid date format", value.AttemptedValue)
);
}
}
return base.BindModel(controllerContext, bindingContext);
}
}
现在,无论您在web.config(<globalization>元素)中设置了哪种区域性还是当前的线程区域性,自定义模型绑定程序DisplayFormat在解析可为空的日期时都将使用属性的日期格式。
- 3 回答
- 0 关注
- 718 浏览
添加回答
举报