asp.net MVC“添加视图”使用 ViewModel 时向导不会预填充字段
在 VS 2010 中,当您使用“添加视图”向导创建具有强类型视图(例如 Models.Person)的编辑视图时,模板会为您生成所有 Person 字段。
如果您使用视图模型,如下所示:
public class PersonVM
{
public Person person;
public List<Team> TeamList = new TeamServices().TeamPickList();
...
}
模板不会为 Model.person 创建所有字段。
有办法让它发挥作用吗?
In VS 2010, When you use the "Add View" wizard to create an Edit view with a strongly typed view, such as Models.Person, the template generates all of Person fields for you.
If you use a view model instead, like this:
public class PersonVM
{
public Person person;
public List<Team> TeamList = new TeamServices().TeamPickList();
...
}
the template wont create all of the fields for Model.person.
Is there a way to make that work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是自动的。
最简单的方法是创建一个新视图,选择“Team”作为视图数据类,选择“List”作为视图内容。然后,您可以将从该视图生成的标记剪切并粘贴到您已经创建的视图中。
Not automatically.
Easiest method is to create a new View, select
Team
as the view data class, Select 'List' as the view content. Then you could cut and paste the markup generated from this view into the one you have already created.如果您使用 List 模板,它通常会创建一个表并迭代 IEnumerable 模型。您还可以使用 CodeTemplates 文件夹中的帮助程序和/或自定义模板之一:
如果需要编辑:
如果您在使用列表时遇到问题,也许可以从其中一个帮助程序开始?
If you use the List template it will normally create a table and iterate over an IEnumerable Model. You can also use one of the helpers and/or custom templates in your CodeTemplates folder:
If you need to edit:
If you're having trouble with the list, maybe start with one of the helpers?