Asp.Net MVC 3 - 通过不同的视图保留列表

时间:2012-09-20 21:09:28

标签: asp.net-mvc-3 razor

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

问题是Create Controller中的模型出现了null,所以我无法保存到数据库中。

我之前在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视图(列表出来null),并在帖子中我希望将我在UploadComplete视图中呈现的模型发送到我的创建控制器,这样我就可以将我的数据存储到数据库中。正如我之前所说,我无法将其保存到索引操作的数据库中,因为我打算在uploadcomplete视图中编辑这些数据。

提前致谢,问候。

1 个答案:

答案 0 :(得分:0)

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

  • 没有[HttpPost]属性
  • 表单操作是GET
  • 页面呈现不正确(隐藏的元素)

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