如何将IEnumerable <int>数组从一个视图正确传递到ASP.NET MVC中的另一个视图?

问题描述

在下面的代码中,我创建了一个索引视图,该视图使用户可以检查他们想要更新的记录。单击提交按钮时,应该将它们重定向到网页,并且需要执行一些代码来更新这些记录。

以下是我已实现的代码

视图:

@model IEnumerable<BulkDelete.Models.Employee>

@{int[] employeesToUpdate;}
    <div style="font-family:Arial">
        @using (Html.BeginForm("UpdateMultiple","Home",FormMethod.Post))
        {
            <table class="table">
                <thead>
                    <tr>
                        <td>CheckBox<br /></td>

                        <th>Name</th>
                        <th>Gender</th>
                        <th>Email</th>
                    </tr>
                </thead>
                <tbody>

                    @foreach (var item in Model)
                    {
                        <tr>
                            <td>
                                <input type="checkBox" name="employeesToUpdate" id="employeesToUpdate" value="@item.ID" />
                            </td>
                            <td>@item.Name</td>
                            <td>@item.Gender</td>
                            <td>@item.Email</td>
                        </tr>
                    }
                </tbody>
            </table>

            <input type="submit"  value="update selected employees" />
        }
    </div>

控制器:

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Data.Entity.Core.Objects;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using BulkDelete.Models;

namespace BulkDelete.Controllers
{
    public class HomeController : Controller
    {
        SampleDBContext db = new SampleDBContext();
        public  System.Web.SessionState.HttpSessionState Session { get; }

        public ActionResult Index()
        {
            return View(db.Employees.ToList()) ;
        }

        [HttpPost]
        public ActionResult UpdateMultiple(IEnumerable<int> employeesToUpdate)
        {
            return RedirectToAction("UpdateMultipleRecords");
        }
        
        //[HttpPost]
        public ActionResult UpdateMultipleRecords()
        {
            IEnumerable<int> employeesToUpdate = (IEnumerable<int>)TempData["employeesToUpdate"];
            var listemployee = db.Employees.Where(x => employeesToUpdate.Contains(x.ID));

            foreach (var item in listemployee)
            {
                int itemid = item.ID;

                Employee e = db.Employees.Find(itemid);
                e.Email = "hello.";
                // e = db.Employees.Find(item);
                db.Entry(e).State = EntityState.Modified;
            }

            db.SaveChanges();

            return RedirectToAction("Index");
        }
    }
}

我一遍又一遍地遇到相同的错误

无法创建类型为'System.Collections.Generic.IEnumerable`1 [[system.int32,mscorlib,Version = 4.0.0.0,Culture = neutral,PublicKeyToken = b77a5c561934e089]]]'的空常量值。

在此上下文中仅支持实体类型,枚举类型或原始类型。

描述:当前Web请求的执行期间发生未处理的异常。请查看堆栈跟踪,以获取有关错误及其在代码中起源的更多信息。

异常详细信息:System.NotSupportedException:无法创建类型为'System.Collections.Generic.IEnumerable'1 [[system.int32,mscorlib,Version = 4.0.0.0,Culture = neutral,PublicKeyToken = b77a5c561934e089 ]]'。 在这种情况下,仅支持实体类型,枚举类型或原始类型。

解决方法

您的表单发布方法需要此签名,您似乎还依赖于RedirectToAction中的TempData,因此您需要在发布方法中设置TempData:

    [HttpPost]
    public ActionResult UpdateMultiple(IEnumerable<int> employeesToUpdate)
    {
        //Set the TempData
        TempData["employeesToUpdate"] = employeesToUpdate;
        return RedirectToAction("UpdateMultipleRecords");
    }

在您看来,您需要像这样修改复选框元素上的name属性,因为它是IEnumerable,因此还需要对名称进行索引,并且当前您使用的是相同的id在所有复选框上,id对于每个元素都应该是唯一的,因此您可以使用iter变量将其追加到复选框的id

@{int[] employeesToUpdate;} @*This doesn't look like it's necessary*@
@{int iter = 0;} @*Declare an iterator variable*@

.......

@for (var item in Model)
 {
    <tr>
        <td>
           @*index the controller parameter's IEnumerable*@
           <input type="checkbox" name="employeesToUpdate[@iter]" id="employeesToUpdate_@iter" value="@item.ID" /> 
        </td>
        <td>@item.Name</td>
        <td>@item.Gender</td>
        <td>@item.Email</td>
   </tr>
   iter++;
 }