gpt4 book ai didi

asp.net-mvc-3 - 在 Razor View 中仅显示日期

转载 作者:行者123 更新时间:2023-12-04 05:56:50 24 4
gpt4 key购买 nike

在我的模型中,我有属性(property):

public DateTime CreatedFrom { get; set; }

在强类型 View 中,我要显示该日期并使其可编辑(但仅限日期,而不是时间)。
我用:
@Html.EditorFor(m=>m.CreatedFrom.ToShortDateString())

当我想转到该 View 时发生异常:
Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions.

怎么做才正确?

最佳答案

Linquinze 是对的,EditorFor 是用于表达式而不是函数。

如果您尝试为您的日期显示一个文本框,您可以使用:

@Html.TextBox("CreatedFrom", @Model.CreatedFrom.ToShortDateString())

我相信这会达到同样的目的。

关于asp.net-mvc-3 - 在 Razor View 中仅显示日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9411568/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com