【发布时间】:2015-02-17 20:16:00
【问题描述】:
我的页面有 3 个下拉菜单,分别是客户、项目和设施。 当页面第一次加载时,我可以将值从数据库加载到下拉列表中。
更改客户端中的选定值应基于选定的客户端加载新项目,同样更改选定项目应加载属于选定项目的新设施。
当我更改客户端值时,项目和设施加载正常,即使所选客户端未显示在下拉列表中。但是当我更改项目或设施时,似乎什么也没发生,所有选定的值都返回 0。 这是cshtml代码
@using (Html.BeginForm("Index", "Home")) {
@Html.DropDownListFor(x => x.SelectedClientId, new SelectList(Model.Clients, "PrimaryKey", "Name", Model.SelectedClientId), "--Select Client--", new { onchange = "this.form.submit();" });
}
@using (Html.BeginForm("Index", "Home")) {
@Html.DropDownListFor(y => y.SelectedProjectId, new SelectList(Model.Projects, "PrimaryKey", "Name", Model.SelectedProjectId), "--Select Project--", new { onchange = "this.form.submit();" })
}
@using (Html.BeginForm("Index", "Home")) {
@Html.DropDownListFor(z => z.SelectedFacilityId, new SelectList(Model.Facilities, "PrimaryKey", "Name", Model.SelectedFacilityId), "--Select Facility--", new { onchange = "this.form.submit();" })
}
这里是 IndexViewModel
public class IndexViewModel {
public int SelectedClientId { get; set; }
public BusinessEntityCollection<Client> Clients { get; set; }
public int SelectedProjectId { get; set; }
public BusinessEntityCollection<Project> Projects { get; set; }
public int SelectedFacilityId { get; set; }
public BusinessEntityCollection<Facility> Facilities { get; set; }
}
这里是 HomeController
public ActionResult Index(IndexViewModel model) {
BusinessEntityCollection<Client> clients = new BusinessEntityCollection<Client>();
BusinessEntityCollection<Project> projects = new BusinessEntityCollection<Project>();
BusinessEntityCollection<Facility> facilities = new BusinessEntityCollection<Facility>();
clients = ClientController.GetClients();
if (Request.HttpMethod == "POST") {
Session["SelectedClientId"] = model.SelectedClientId;
Session["SelectedProjectId"] = model.SelectedProjectId;
Session["SelectedFacilityId"] = model.SelectedFacilityId;
if (Session["SelectedClientId"] == null) {
projects.Add(new Project() { Name = "None", PrimaryKey = 0 });
}
else {
if (Convert.ToInt32(Session["SelectedClientId"]) == 0) {
projects = ProjectController.GetUserProjects(clients[0].PrimaryKey);
Session["SelectedClientId"] = clients[0].PrimaryKey;
}
else
projects = ProjectController.GetUserProjects(Convert.ToInt32(Session["SelectedClientId"]));
}
if (Session["SelectedProjectId"] == null) {
facilities.Add(new Facility() { Name = "None", PrimaryKey = 0 });
}
else {
if (Convert.ToInt32(Session["SelectedProjectId"]) != 0)
facilities = FacilityController.GetFacilitiesByProject(Convert.ToInt32(Session["SelectedProjectId"]));
}
}
model.Clients = clients; model.Projects = projects; model.Facilities = facilities;
return View(model);
}
我正在尝试将选定的值保存到会话变量中并检索它们,但它似乎不起作用。
【问题讨论】:
标签: c# asp.net-mvc asp.net-mvc-4 razor