MVC查看和枚举列表

发布于 2024-10-18 11:18:51 字数 417 浏览 2 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稚然 2024-10-25 11:18:51

我猜你在这里做了一个强类型的视图,对吧?如果您查看视图的顶部,您可能会看到模型定义。确保在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文