在Controller定义了一个ViewData["ds"],里面存了一个List<>。
在View中怎么遍历这个List?
谢谢。
⊙﹏⊙b汗,你先把类型转换回来,然后再遍历了哦。
嗯,这样行@foreach (var item in ViewData["ds"] as List<>)
谢谢了