回复MVC4 DataType.Date EditorFor 不会在 Chrome 中显示日期值,在 IE 中没问题
在模型中,您需要具有以下类型的声明:
[DataType(DataType.Date)]
public DateTime? DateXYZ { get; set; }
或者
[DataType(DataType.Date)]
public Nullable<System.DateTime> DateXYZ { get; set; }
您不需要使用以下属性:
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
在 Date.cshtml 使用这个模板:
@model Nullable<DateTime>
@using System.Globalization;
@{
DateTime dt = DateTime.Now;
if (Model != null)
{
dt = (System.DateTime)Model;
}
if (Request.Browser.Type.ToUpper().Contains("IE") || Request.Browser.Type.Contains("InternetExplorer"))
{
@Html.TextBox("", String.Format("{0:d}", dt.ToShortDateString()), new { @class = "datefield", type = "date" })
}
else
{
//Tested in chrome
DateTimeFormatInfo dtfi = CultureInfo.CreateSpecificCulture("en-US").DateTimeFormat;
dtfi.DateSeparator = "-";
dtfi.ShortDatePattern = @"yyyy/MM/dd";
@Html.TextBox("", String.Format("{0:d}", dt.ToString("d", dtfi)), new { @class = "datefield", type = "date" })
}
}
玩得开心!问候,布莱顿