数据注释中的 Asp.Net Mvc 隐藏字段
我以为这会是在谷歌上的快速搜索,但也许我错过了一些东西。有没有办法使用数据注释来设置 ViewModel 属性以在呈现标记时创建 HiddenInput?
我发现的唯一注释是从视图中完全隐藏该属性,我仍然希望呈现该属性,但作为隐藏输入。
I thought this would be a quick search on google but maybe I'm missing something. Is there a way, using Data Annotations, to set a ViewModel property to create a HiddenInput when the markup get rendered?
The only annotations I've found were to hide the property from the view entirely, I still want the property rendered but as a hidden input.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该属性:
将渲染为 ie
使用
Html.EditorForModel()
或Html.EditorFor(m => m.Id)
时This property:
will be rendered as i.e.
when using
Html.EditorForModel()
orHtml.EditorFor(m => m.Id)