MVC 3 验证 - 格式化日期时间

发布于 2024-12-10 00:20:31 字数 481 浏览 2 评论 0原文

我想以干净的方式在 razor 中格式化我的 DateTime 字段。

[MetadataType(typeof(Guestbook_Validation))]
public partial class web_GuestBook
{
    // Partial generated EF
}

[Bind(Exclude="Id")]
public class Guestbook_Validation
{
    [DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}")]
    public DateTime? DateEntered { get; set; }
}

然后

@item.DateEntered

但它仍然显示为 05/01/2009 13:28:14

我哪里出错了?

I want to format my DateTime field in razor in a clean way.

[MetadataType(typeof(Guestbook_Validation))]
public partial class web_GuestBook
{
    // Partial generated EF
}

[Bind(Exclude="Id")]
public class Guestbook_Validation
{
    [DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}")]
    public DateTime? DateEntered { get; set; }
}

Then

@item.DateEntered

But its still displaying as 05/01/2009 13:28:14

Where am I going wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一曲琵琶半遮面シ 2024-12-17 00:20:31

如果您希望使用显示格式,请使用 Html.DisplayFor(x => x.DateEntered)

Use Html.DisplayFor(x => x.DateEntered) if you want the display format to be used.

川水往事 2024-12-17 00:20:31

请参阅此答案:

为 MVC3 DateTime 设置 DataFormatString

您必须使用 < code>EditorFor 在视图中,并在视图模型中使用 ApplyFormatInEditMode = true - 对于文本框。要仅显示,请使用 DisplayFor

See this answer:

Set DataFormatString for MVC3 DateTime

You have to use EditorFor in the view and use ApplyFormatInEditMode = true in your viewmodel - For textbox. To display only, use DisplayFor

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文