0

我是这个技术的新手,我在传递我导入到我的应用程序的 excel 列表时遇到了一些麻烦,这里是代码:

问题是创建控制器中的模型为空,因此我无法保存到数据库中。

我之前无法在uploadcomplete 操作中保存它,因为我打算在保存到数据库之前编辑这些值。

 [HttpPost]
  public ActionResult Index(HttpPostedFileBase excelFile)
    {
        if (excelFile != null)
        {
            //Save the uploaded file to the disc.
            string savedFileName = Server.MapPath("~/UploadedExcelDocuments/" +   excelFile.FileName);
            excelFileHandler.ImportExcel(savedFileName, excelFile); 
            return RedirecToAction("UploadComplete",excelFileHandler.DataToEdit);        
        }
        else { return RedirectToAction("Error", "Upload"); }
    }

    public ActionResult UploadComplete(List<Persona> DataToEdit) // This comes out null so i cant render the view now
    {
        return View();
    }

    [HttpPost]
    public ActionResult UploadComplete(IEnumerable<ExcelImport.Persona> model)
    {
        return View();
    }

    public ActionResult Create(IEnumerable<ExcelImport.Models.Person> model) 
    {
        using (ExcelimportDBTestEntities context = new ExcelimportDBTestEntities())
        {
            foreach (ExcelImport.Models.Person person in model)
            {
                Persona newPerson = new Person();
                newPersona.Id = person.Id;
                newPersona.Birthday= persona.Birthday;
                newPersona.LastName= persona.LastName;
                newPersona.Name = persona.Name;
                context.Persons.AddObject(newPersona);
                context.SaveChanges();
            }
            return View();
        }
    }

这是我的观点,这里一定有问题

@model IEnumerable<ExcelImport.Models.Person>

@{
   ViewBag.Title = "UploadComplete";
}
<h2>UploadComplete</h2>
@Html.BeginForm(){
<table>
    <tr>
        <th>
            ID
        </th>
        <th>
            Name
        </th>
        <th>
            Last Name
        </th>
        <th>
            Birthday
        </th>
        <th>
            Options
        </th>
    </tr>
  @foreach (var item in Model) {   
    @Html.HiddenFor(model => item)
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.Id)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.Name)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.LastName)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.Birthday)
        </td>
        <td>

        </td>
    </tr>
    }

    </table>
   <input type="submit" value="Upload!"/>
  }

编辑:我昨天很累,所以我放了一些......让我做错了“测试”,现在这就是我真正想做的。我有一个上传文件并发送到帖子索引控制器的索引视图,从那里我想将列表发送到我的 UploadComplete 控制器,所以我可以渲染 UploadComplete 视图(列表为空),并在帖子中我想将我在 UploadComplete 视图中渲染的模型发送到我的创建控制器,这样我就可以将我的数据存储到数据库中。正如我之前所说,我无法在索引操作中将其保存到数据库中,因为我打算在 uploadcomplete 视图中编辑这些数据。

预先感谢,问候。

4

1 回答 1

0

正如我在您的代码中看到的:

  • 没有 [HttpPost] 属性
  • 表单动作是 GET
  • 页面渲染不正确(隐藏元素)

看看这个例子。它显示了如何在 POST 上绑定列表。

于 2012-09-20T21:26:21.593 回答