在C#中使用IList
时遇到问题。
我的班级里面有这个清单,还有一个应该更新它的方法。 但是,一旦我需要显示列表或再次对其进行更新,我将获得原始列表,而不是更新的列表。
IList<Student> studentList = new List<Student>{
new Student() { StudentId = 1, StudentName = "John", Age = 18 } ,
new Student() { StudentId = 2, StudentName = "Steve", Age = 21 } ,
new Student() { StudentId = 3, StudentName = "Bill", Age = 25 } ,
new Student() { StudentId = 4, StudentName = "Ram" , Age = 20 } ,
new Student() { StudentId = 5, StudentName = "Ron" , Age = 31 } ,
new Student() { StudentId = 6, StudentName = "Chris" , Age = 17 } ,
new Student() { StudentId = 7, StudentName = "Rob" , Age = 19 }
};
// GET: Student
public ActionResult Index()
{
return View(studentList);
}
[HttpPost]
public ActionResult Edit(Student std)
{
var name = std.StudentName;
var age = std.Age;
var id = std.StudentId;
Student stud = new Student();
stud.Age = age;
stud.StudentId = id;
stud.StudentName = name;
studentList.RemoveAt(id-1);
Debug.WriteLine(id);
return RedirectToAction("Index");
}
更新完成后,该方法会正确记录更改。我尝试编辑该元素而不是删除它,无济于事。
我该如何解决?
答案 0 :(得分:3)
不要在Edit方法的末尾重定向用户,而是将带有更新后的学生列表的视图传递回去。像这样:
代替:
sudo a2enmod php7.2
sudo systemctl restart apache2
使用:
return RedirectToAction("Index");
(“索引”是您要显示的视图的名称。)
调用return View("Index", studentList);
会重新加载该类并重新初始化RedirectToAction
,因此它不会显示更新的列表,而是会显示原始列表。