ASP.NET MVC2 - Html.EditorForModel() 是否适用于嵌套数据模型?
我的测试表明它不起作用。它忽略模型中的嵌套数据。 谁能证实这一点吗?
My test shows it doesn't work. It ignores the nested data in model.
Can anyone confirm this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你是什么意思?如果您正在为特定类型定义 EditorTemplate,则您可以完全控制它呈现的 HTML。
听起来您正在使用“默认”编辑器模板,如果您尚未设置特定模板,MVC 会尝试使用该模板,并且它应该只迭代它可以通过分析找到的那些简单属性。如果你创建一个:
你就可以让它显示你想要的任何内容。
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:
you can then make it display whatever you want.