3

为了调试,我想将 ViewBag 的内容转储到 View 的注释中。这似乎相对简单,但没有教程甚至可以解决这个问题。ViewBag 的细节似乎很少。

那么如何将 ViewBag 的内容转储到 View 中呢?假设没有复杂类型,如列表等。链接到提供有关 eh VB 的详细信息的源是一个加号。

4

1 回答 1

8

You can do it with ViewData instead. Like this

<ul>
@foreach(var pair in ViewData)
{
   <li>@pair.Key : @pair.Value</li>
}
</ul>

To learn why ViewData may be used instead of ViewBag please have a look in here. Check the question and the accepted answer by Darin Dimitrov.

于 2012-07-20T12:15:55.883 回答