我有此视图,我需要根据“值列” View: EstimateValue中的选定值来更新表Task。该视图接受@model IEnumerable,然后迭代任务列表并将其显示在Table中。
视图
@model IEnumerable<Task>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<table class="table table-striped table-hover table-bordered">
<thead>
<tr class="info">
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.Description)
</th>
<th>
@Html.DisplayNameFor(model => model.Value)
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
@Html.HiddenFor(modelItem => item.ID)
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Description)
</td>
<td>
@Html.EditorFor(modelItem => item.Value, new { @class = "form-control" })
@Html.ValidationMessageFor(modelItem => item.Value, "", new { @class = "text-danger" })
</td>
</tr>
}
</tbody>
</table>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Save" class="btn btn-default" />
</div>
</div>
</div>
}
控制器具有发布方法EstimateValue
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult EstimateValue(IEnumerable<Task> TaskList)
{
if (ModelState.IsValid)
{
foreach (var task in TaskList)
{
db.Entry(task).State = EntityState.Modified;
db.SaveChanges();
}
return RedirectToAction("Index");
}
//1. Rebound List to view
var TaskList = db.Tasks.ToList();
//2, return model to view
return View(TaskList);
}
运行应用程序时,TaskList为空,我无法更新表Task。我已经使用JSON从视图中将数据作为数组发送,但是TaskList的值仍然为空
答案 0 :(得分:0)
将IEnumerable更改为List,因为IEnumerable不允许建立索引。而不是@foreach循环,请使用@for循环。所以您的视图应该是这样的:
@model List<Task>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<table class="table table-striped table-hover table-bordered">
<thead>
<tr class="info">
<th>
@Html.DisplayNameFor(model => Model[0].Name)
</th>
<th>
@Html.DisplayNameFor(model => Model[0].Description)
</th>
<th>
@Html.DisplayNameFor(model => Model[0].Value)
</th>
</tr>
</thead>
<tbody>
@for(int i=0;i<Model.Count;i++)
{
<tr>
@Html.HiddenFor(modelItem => modelItem[i].ID)
<td>
@Html.DisplayFor(modelItem => modelItem[i].Name)
</td>
<td>
@Html.DisplayFor(modelItem => modelItem[i].Description)
</td>
<td>
@Html.EditorFor(modelItem => modelItem[i].Value, new { @class = "form-control" })
@Html.ValidationMessageFor(modelItem => modelItem[i].Value, "", new { @class = "text-danger" })
</td>
</tr>
}
</tbody>
</table>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Save" class="btn btn-default" />
</div>
</div>
</div>
}
然后更改您的控制器:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult EstimateValue(List<Task> TaskList)
{
if (ModelState.IsValid)
{
for(int i=0;i<TaskList.Count;i++)
{
db.Entry(TaskList[i]).State = EntityState.Modified;
db.SaveChanges();
}
return RedirectToAction("Index");
}
//1. Rebound List to view
var TaskList = db.Tasks.ToList();
//2, return model to view
return View(TaskList);
}
如果这可以解决您的问题,请接受答案。