ASP.NET MVC2 - Html.EditorForModel() 是否适用于嵌套数据模型?

发布于 2024-08-30 07:21:30 字数 41 浏览 3 评论 0原文

我的测试表明它不起作用。它忽略模型中的嵌套数据。 谁能证实这一点吗?

My test shows it doesn't work. It ignores the nested data in model.
Can anyone confirm this?

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

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

发布评论

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

评论(1

杯别 2024-09-06 07:21:30

你是什​​么意思?如果您正在为特定类型定义 EditorTemplate,则您可以完全控制它呈现的 HTML。

听起来您正在使用“默认”编辑器模板,如果您尚未设置特定模板,MVC 会尝试使用该模板,并且它应该只迭代它可以通过分析找到的那些简单属性。如果你创建一个:

\Views\<Controller>\EditorTemplates\<YourViewModelName>.ascx

你就可以让它显示你想要的任何内容。

What do you mean? If you are defining an EditorTemplate for a specific type, you have complete control over the HTML it renders.

It sounds like you are using the 'default' editor template that MVC tries to use if you haven't set up a specific template, and it should only iterate over those simple properties it can find with analysis. If you create a:

\Views\<Controller>\EditorTemplates\<YourViewModelName>.ascx

you can then make it display whatever you want.

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