循环遍历模型并在视图中为每个属性创建文本框
我有一个具有 5-6 个属性的模型。是否可以循环遍历模型中的所有属性(公共属性)并为每次迭代在视图中创建一个文本框,而不是繁琐地编写一行代码来在视图中创建文本框?
谢谢
I have a model with 5-6 properties. Rather than tediously writing a line of code to create a textbox in the view, is it possible to loop through all the properties in the model (which are public) and create a textbox in the view for each iteration?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用
@Html.EditorForModel()
或者如果您想要更精细的控制,您可以借助一点反射来生成文本框:Yes you can use
@Html.EditorForModel()
or if you want more granular control you can generate the textboxes with the help of a little reflection:为此有一个内置功能。 @Html.EditorForModel( )将为每个字段吐出适当的编辑器控件。阅读 MVC 中的“编辑器模板”功能,了解其工作原理、如何自定义它等。
There is a built-in feature for this. @Html.EditorForModel() will spit out the appropriate editor controls for each field. Read up on the "editor templates" feature in MVC to understand how this works, how to customize it, etc.