循环遍历模型并在视图中为每个属性创建文本框

发布于 2025-01-07 19:22:40 字数 99 浏览 0 评论 0原文

我有一个具有 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 技术交流群。

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

发布评论

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

评论(2

踏雪无痕 2025-01-14 19:22:40

是的,您可以使用 @Html.EditorForModel() 或者如果您想要更精细的控制,您可以借助一点反射来生成文本框:

@foreach (var property in Model.GetType().GetProperties())
{
   @Html.Label(property.Name)
   @Html.TextBox(property.Name)
}

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:

@foreach (var property in Model.GetType().GetProperties())
{
   @Html.Label(property.Name)
   @Html.TextBox(property.Name)
}
倒带 2025-01-14 19:22:40

为此有一个内置功能。 @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.

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