MVC查看和枚举列表
使用 MVC3 我的控制器中有这个。我如何在视图中枚举它?
public ActionResult NWaySwitch()
{
var switches = _nWaySwitch.Switches.Cast<Switch>().ToList();
// var switches = _nWaySwitch.Switches;
return View(switches);
}
foreach 语句无法对“object”类型的变量进行操作,因为“object”不包含“GetEnumerator”
@foreach 的公共定义(ViewData[“switches”] 中的 System.Collections.ArrayList 项) {}
Using MVC3 I have this in my controller. How do I enumerate this within the view?
public ActionResult NWaySwitch()
{
var switches = _nWaySwitch.Switches.Cast<Switch>().ToList();
// var switches = _nWaySwitch.Switches;
return View(switches);
}
foreach statement cannot operate on variables of type 'object' because 'object' does not contain a public definition for 'GetEnumerator'
@foreach (System.Collections.ArrayList item in ViewData["switches"])
{}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你在这里做了一个强类型的视图,对吧?如果您查看视图的顶部,您可能会看到模型定义。确保在 IEnumerable<> 中进行此操作。你应该可以走了
I am guessing you made a strongly typed view here right? If you look at the top of the view you will probably see the Model definition. Make sure that you make this in a IEnumerable<> and you should be good to go