gpt4 book ai didi

c# - 在 View 中显示字典值

转载 作者:行者123 更新时间:2023-12-01 22:19:21 25 4
gpt4 key购买 nike

我正在使用 C# asp.net 和 MVC,而且我刚刚开始使用,所以在理解如何将字典传递到 View 并打印出每个值时遇到了一些困难。

我的字典看起来像:

Dictionary<int, Dictionary<string, int>> values = new Dictionary<int, Dictionary<string, int>>();

我想要的是嵌套每个循环并打印出来:

firstInt   FirstString --valueInt
SecondString--valueInt2
SecondInt FirstString--valueInt3
SecondString--valueInt4

等等

使用 C#,我知道如何执行此操作,因为我只需浏览字典并打印出它们的值,但我不知道如何在 View 中执行此操作。返回字典的方法在 Controller 中。

最佳答案

假设 Razor 是您的 View 引擎,请将字典放入 ViewBag 中,然后在您的 View 中执行以下操作:

@foreach (var item in ViewBag.MyDictionary) {
<ul>
<li>@item.Key
<ul>
@foreach (var subItem in item.Value) {
<li>@subItem.Key --@subItem.Value</li>
}
</ul>
</li>
</ul>
}

关于c# - 在 View 中显示字典值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21498948/

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