具有关键“CATEGORYID”的ViewData的产品类型“System.Int32”,但必须是

2019-10-20 23:59发布

你能请与下面的错误帮助吗? 什么是错我的代码。 谢谢你的帮助。

错误:

具有关键“CATEGORYID”的ViewData的产品类型“System.Int32”的,但必须是类型为“IEnumerable的”。

调节器

  public ActionResult ProductCreate()
    {
        ViewBag.Suppliers = db.Suppliers.Where(x => x.IsActive).ToList();
        ViewBag.Categories = new SelectList(db.Categories.Where(x => x.IsActive).ToList(), "Id", "Name").ToList();
        return View();
    }
    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult ProductCreate(Product product, int[] suppliers)
    {
        if (ModelState.IsValid)
        {
            foreach (int SupplierId in suppliers)
            {
                product.Suppliers.Add(db.Suppliers.Find(SupplierId));
            }
            db.Products.Add(product);
            db.SaveChanges();
            return RedirectToAction("ProductIndex");
        }

        return View(product);

视图:

  @(Html.DropDownListFor(x => x.CategoryId, (IEnumerable<SelectListItem>)ViewBag.Categories))
                <br />
                @Html.ValidationMessageFor(x => x.CategoryId)

Answer 1:

我刚才又填充viewbag在创建后的行动,并就解决了。



文章来源: The ViewData item that has the key 'CategoryId' is of type 'System.Int32' but must be of type 'IEnumerable'.