Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从数据库中检索到了从模型到控制器的产品列表。现在,我想在单击按钮时将其显示在视图中。我不知道使用哪个 HTML 元素来显示列表以及如何将其传递给视图?
在您的控制器中,您可以通过返回您的模型来传递Model给:View
Model
View
return View(model);
然后在您的文件顶部View指定您的:model
model
@model [Model here]
然后你可以遍历你的对象以在页面上显示它们,如下所示:
<ul> @foreach(var product from Model.Products){ <li>@product.Name</li> } </ul>