MVC 3 Razor - 为特定属性名称创建 DisplayTemplate,例如 WebsiteUrl、IsActive

发布于 2024-11-30 16:15:11 字数 287 浏览 2 评论 0原文

我的模型有非常严格的命名约定,我想知道是否可以通过显示模板来利用此通用字段,例如 - WebsiteUrl、IsActive、UpdateDate、InsertDate?

是否可以根据属性名称创建显示模板?

编辑:

我知道我可以使用这样的方法来实现这一点:

@Html.DisplayFor(model => model.Farmer.WebsiteUrl, "WebsiteUrl")

我只是想知道是否有一种更强类型的方法来做到这一点。

I have very strict naming conventions for my models and I am wondering if I can leverage this via display templates for common fields like - WebsiteUrl, IsActive, UpdateDate, InsertDate?

Is it possible to create a Display Template based on a property's name?

EDIT:

I am aware that I can achieve this using something like this:

@Html.DisplayFor(model => model.Farmer.WebsiteUrl, "WebsiteUrl")

I am just wondering if there is a more strongly typed way of doing it.

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

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

发布评论

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

评论(1

神爱温柔 2024-12-07 16:15:11

您可以在模型上使用 UIHint("") 属性,名称是共享/EditorTemplates 文件夹中文件的名称。我这样做是为了上传框、jquery datepicker、所见即所得编辑器等

you can use the UIHint("") attribute on your models, the name is the name for the file within your shared/EditorTemplates folder. i do this for things like upload box, jquery datepicker, WYSIWYG editor etc

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