我为参加特定批次的学生制作了一个出勤小组。为此,我根据为该批次分配的课程数量显示学生的记录以及复选框的数量。一切都正确显示,但只有一行的复选框将值带到帖子,其他行的其他复选框不会发布。每行的学生详细信息都在列表中进行更正。
以下是我的代码
StudentAttendance.cs
public class StudentAttendance
{
public List<Models.User> userlist { get; set; }
public List<Models.Days> days { get; set; }
}
InstructorController.cs
public ActionResult AssignedStudents(string id)
{
Models.StudentAttendance viewmodel = new Models.StudentAttendance();
//viewmodel.studentbatch = new Models.StudentBatch();
//viewmodel.user = new Models.User();
Context.Instructor instructor = new Context.Instructor();
viewmodel.userlist = new List<Models.User>();
viewmodel.days = new List<Models.Days>();
viewmodel.userlist = instructor.lstAssignedStudents(id);
Context.Batches contBatch = new Context.Batches();
var days = contBatch.SelectDays(id);
int totaldays = contBatch.CalculateDays(days);
var duration = contBatch.GetallBatchList().Where(p => p.Id == id);
var batchduration = (from c in duration where c.Id == id select c.Duration).ToList();
string d = batchduration[0].ToString();
int totalduration = contBatch.GetBatchDuration(d);
int TotalCheckBoxes = totalduration * totaldays;
List<string> getdays = contBatch.getdaysinList(days, totalduration);
List<Models.Days> day = new List<Models.Days>();
for (int i = 0; i < TotalCheckBoxes; i++)
{
day.Add(new Models.Days { dayid = i, dayname = getdays[i], ischecked = false });
}
viewmodel.days = day;
return View(viewmodel);
}
[HttpPost]
public ActionResult MarkAttendance(Models.StudentAttendance viewmodel)
{
Models.StudentAttendance viewmodel1 = new Models.StudentAttendance();
//viewmodel.studentbatch = new Models.StudentBatch();
//viewmodel.user = new Models.User();
return View();
}
AssignedStudents.cshtml
@model WebApplication1.Models.StudentAttendance
@{
ViewBag.Title = "AssignedStudents";
}
<h2>AssignedStudents</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
@using (Html.BeginForm("MarkAttendance","Instructor", FormMethod.Post))
{
<table class="table">
<tr>
<th>@Html.DisplayName("First Name")</th>
<th>@Html.DisplayName("Last Name")</th>
</tr>
@for (int j = 0; j < Model.userlist.Count; j++)
{
<tr>
<td>@Html.HiddenFor(m=>Model.userlist[j].Id)</td>
<td>@Html.EditorFor(m => Model.userlist[j].FirstName)</td>
<td>@Html.EditorFor(m => Model.userlist[j].LastName)</td>
@for (int i = 0; i < Model.days.Count; i++)
{
<td>
@Html.CheckBoxFor(m => Model.days[i].ischecked)
@Model.days[i].dayname
@Html.HiddenFor(m => Model.days[i].dayid)
@Html.HiddenFor(m => m.days[i].dayname)
</td>
}
</tr>
}
</table>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" id="Attendance" value="Create" class="btn btn-default" />
</div>
</div>
}
答案 0 :(得分:0)
使用viewmodel作为控制器类中的List解决了这个问题。
<强> StudentAttendance.cs 强>
List<DayVM> days = new List<DayVM>
{
new DayVM(),
new DayVM()
};
List<StudentVM> model = new List<StudentVM>
{
new StudentVM{ Id = 1, FirstName = "Bob", Days = days },
new StudentVM{ Id = 2, FirstName = "john", Days = days },
}
return View(model);
和内部视图
@for(int i = 0; i < Model.Count; i++)
{
... elements for properties of Student
@for(int j = 0; j < Model[i].Days.Count; j++)
{
@Html.CheckBoxFor(m => m[i].Days[j].IsSelected)
....
}
}
并使用List来收集后期操作中的值
public ActionResult MarkAttendance(List<Models.StudentVM> lst)
{
.....
}
非常感谢斯蒂芬·穆克(Stephen Muecke)让你轻松一点。