gpt4 book ai didi

c# - 在 MVC View 中使用 Razor 循环遍历模型属性

转载 作者:太空宇宙 更新时间:2023-11-03 21:11:56 25 4
gpt4 key购买 nike

我有这个模型有很多属性

public class Task {
public string Key { get; set; }
public string Title { get; set; }
public string Description { get; set; }
....
}

我需要在 View 中创建一个表来列出任务的所有属性。

同样的问题已经被问到但我不想使用 ViewData:Looping through view Model properties in a View

有什么想法吗?

最佳答案

这对你有用吗?

@foreach(var task in Model) {
<tr>
@foreach(var property in typeof(Task).GetProperties()) {
<th>@(property.GetValue(task, null))</th>
}
</tr>
}

关于c# - 在 MVC View 中使用 Razor 循环遍历模型属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37058536/

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