asp.net MVC“添加视图”使用 ViewModel 时向导不会预填充字段

发布于 2024-09-29 00:28:41 字数 321 浏览 3 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

少钕鈤記 2024-10-06 00:28:41

不是自动的。

最简单的方法是创建一个新视图,选择“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.

甜心小果奶 2024-10-06 00:28:41

如果您使用 List 模板,它通常会创建一个表并迭代 IEnumerable 模型。您还可以使用 CodeTemplates 文件夹中的帮助程序和/或自定义模板之一:

<% Html.DisplayForModel(); %>

如果需要编辑:

<% Html.EditorForModel(); %>

如果您在使用列表时遇到问题,也许可以从其中一个帮助程序开始?

<%: Html.DropDownListFor(model => model.TeamList, new SelectList(Model.TeamList)) %>

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:

<% Html.DisplayForModel(); %>

If you need to edit:

<% Html.EditorForModel(); %>

If you're having trouble with the list, maybe start with one of the helpers?

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