MVC 3 Razor - 为特定属性名称创建 DisplayTemplate,例如 WebsiteUrl、IsActive
我的模型有非常严格的命名约定,我想知道是否可以通过显示模板来利用此通用字段,例如 - 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在模型上使用 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