gpt4 book ai didi

c# - 对 "model"在 ASP.NET View 中的含义感到困惑

转载 作者:行者123 更新时间:2023-11-30 13:30:30 25 4
gpt4 key购买 nike

下面是 asp.net 上 MSDN 教程中的一个 View 文件:

@model EFDBfirst.Models.Student

@{
ViewBag.Title = "Details";
}

<h2>Details</h2>

<div>
<h4>Student</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.LastName)
</dt>

<dd>
@Html.DisplayFor(model => model.LastName)
</dd>

<dt>
@Html.DisplayNameFor(model => model.FirstName)
</dt>

<dd>
@Html.DisplayFor(model => model.FirstName)
</dd>

<dt>
@Html.DisplayNameFor(model => model.EnrollmentDate)
</dt>

<dd>
@Html.DisplayFor(model => model.EnrollmentDate)
</dd>

<dt>
@Html.DisplayNameFor(model => model.MiddleName)
</dt>

<dd>
@Html.DisplayFor(model => model.MiddleName)
</dd>

</dl>
<table class="table">
<tr>
<th>
Course Title
</th>
<th>
Grade
</th>
<th>
Credits
</th>
</tr>

@foreach (var item in Model.Enrollments)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Course.Title)
</td>
<td>
@Html.DisplayFor(modelItem => item.Grade)
</td>
<td>
@Html.DisplayFor(modelItem => item.Course.Credits)
</td>
</tr>
}
</table>
</div>
<p>
@Html.ActionLink("Edit", "Edit", new { id = Model.StudentID }) |
@Html.ActionLink("Back to List", "Index")
</p>

第一行是modelModels。我很确定 Models引用项目根目录中的“模型”文件夹。

下面几行是 @Html.DisplayNameFor(model => model.LastName),里面有 model。这与第一行中的 model 有何不同?

然后又是 @foreach(Model.Enrollments 中的 var item),其中包括 Model 现在这个不以“s”结尾,所以我不不要认为它指的是项目根目录中的 Models 文件夹。那这是什么?

还有modelItem,我不确定它只是一个参数还是指这个类中的东西。

最后一个是 @Html.ActionLink("Edit", "Edit", new { id = Model.StudentID }), 和foreach中用的类似,这是指同一个东西吗?

最佳答案

@model EFDBfirst.Models.Student 声明此 View 中使用的模型是 Student

在您的 View 中,您可以使用 Model 引用您的模型。因此,如果您想遍历已传递给此 View 的学生对象的 Enrollments,您只需执行以下操作:

@foreach(var enrollment in Model.Enrollments)
{

}

关于此,@Html.DisplayNameFor(model => model.LastName) 这是一个 HTML 帮助程序,在这种情况下,它将为您创建一个标签,用于您模型的属性,称为姓氏

关于html helpers,请看here .此外,您可以将这一行传递给这个助手:

@Html.DisplayNameFor(m => m.LastName)

或这一行:

@Html.DisplayNameFor(x => x.LastName)

使用 model 并不重要。这只是对您传递给 View 的模型的引用。

最后但同样重要的是,这个 @Html.ActionLink("Edit", "Edit", new { id = Model.StudentID }) 也是一个创建 html 链接的 html 助手。

关于c# - 对 "model"在 ASP.NET View 中的含义感到困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33443156/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com