MVC System.InvalidOperationException:但是此字典需要类型为“System.Collections.Generic.IEnumerable”1[smoethng] 的模型项

发布于 2024-11-09 01:54:02 字数 622 浏览 0 评论 0原文

Selam,

public ActionResult Edit()
        {
            var model = new HomeViewModel();
            using (var context = new BannerEntities())
            {
                model.FotoList = context.Fotos.ToList();
                return View(model);
            }
        }

我的观点是

@model IEnumerable<Banner.Models.HomeViewModel>

@{
    ViewBag.Title = "Edit";
}

<h2>Edit</h2>

我犯了错误: 传递到字典中的模型项的类型为“Banner.Models.HomeViewModel”,但此字典需要类型为“System.Collections.Generic.IEnumerable`1[Banner.Models.HomeViewModel]”的模型项。 知道为什么会出现这个问题吗?

Selam,

public ActionResult Edit()
        {
            var model = new HomeViewModel();
            using (var context = new BannerEntities())
            {
                model.FotoList = context.Fotos.ToList();
                return View(model);
            }
        }

And the view is

@model IEnumerable<Banner.Models.HomeViewModel>

@{
    ViewBag.Title = "Edit";
}

<h2>Edit</h2>

I am taking the error:
The model item passed into the dictionary is of type 'Banner.Models.HomeViewModel', but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable`1[Banner.Models.HomeViewModel]'.
Is there any idea why is that problem occure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

木有鱼丸 2024-11-16 01:54:02

您正在传递 Banner.Models.HomeViewModel 的单个实例,但您的视图需要 Banner.Models.HomeViewModelIEnumerable 集合。

将您的视图更改为如下所示,它应该可以工作:

@model Banner.Models.HomeViewModel

@{
    ViewBag.Title = "Edit";
}

<h2>Edit</h2>

You are passing a single instance of Banner.Models.HomeViewModel, but your view is expecting an IEnumerable collection of Banner.Models.HomeViewModel.

Change your view to look like this and it should work:

@model Banner.Models.HomeViewModel

@{
    ViewBag.Title = "Edit";
}

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