如何使用会话重定向用户基于母版页的下拉选择
本文关键字:母版页 选择 何使用 会话 重定向 用户 | 更新日期: 2023-09-27 18:11:55
我的主页上有一个下拉列表,其中包含部门列表。现在我有几个页面显示了基于部门选择和更改的记录列表。
当用户从下拉菜单中选择新部门时,我对MVC控制器进行AJAX调用并将部门id发送给该控制器并将其存储在会话中,并在所有页面上使用该会话,因为所有页面都是部门驱动的。
实现:
@{
int departmentId = 0;
int.TryParse(Convert.ToString(Session["departmentId"]), out departmentId);
}
<select id="department" name="department" class="form-control"> //filling dropdown based on departmentId
</select>
$(document).ready(function () {
$("#department").change(function () {
var departmentId = $(this).val();
$.ajax({
url: "@Url.Action("ChangeDepartment", "Home")",
data: { id: departmentId },
success: function (e) {
if ('@departmentId' > 0) {
if (window.location.pathname == '/Employee/Skill') {
window.location.href = '/Employee/Skill';
} else if (window.location.pathname == '/Payroll/Salary') {
window.location.href = '/Payroll/Salary';
} else {
window.location = window.location;
}
}
else {
window.location.href = '/Employee/List';
}
}
});
});
});
public JsonResult ChangeDepartment(int id)
{
Session["departmentId"] = id;
return Json(id, JsonRequestBehavior.AllowGet);
}
但现在假设用户在/Employee/Skills页面上,当用户打开任何新页面并将部门值更改为"选择部门"(id将为0)当用户刷新/Employee/Skills时,用户仍然停留在该页面上,而不是重定向到Employee List页面(/Employee/List)。
所以我有很多网页,基本上是部门价值驱动的,所以当我将有部门id= 0我想重定向用户到/Employee/List
,否则刷新用户当前所在页面,并显示基于department id.
的数据
那么,为丢失的页面编写这样的条件是一个好主意还是有更好的方法来管理它?
我有以下几页:
我有以下菜单项:
1) EmployeeList
2) DepartmentList
3)技能
4)工资
5) LeaveManagement
6)出席7)性能
现在当用户登录时,用户将被重定向到下面的页面,并且只会看到2个菜单项,因为目前在布局页面上的部门下拉菜单中没有选择部门:
http://localhost:2220/Employee/EmployeeList
1) EmployeeList
2) DepartmentList
现在我们在http://localhost:2220/Employee/EmployeeList
页面,所以这将列出所有部门的所有员工。
当用户选择合适的部门时,我将对控制器进行AJAX调用以存储部门id,这将刷新我的页面所以现在我将在员工列表中提供部门id现在我将根据部门id获得员工列表:
[HttpGet]
public JsonResult getEmployees()
{
int departmentId = 0;
int.TryParse(Convert.ToString(Session["departmentId"]), out departmentId);
if(departmentId==0)
EmployeeRepository.GetEmployee(0);
else
EmployeeRepository.GetEmployee(departmentId);
}
现在选择部门后,所有其他菜单项将可见(例如:技能,工资等)
现在假设用户单击技能菜单项,然后用户将被重定向到http://localhost:2220/EmployeeSkills/Skills
url,我将再次有上面的方法:
[HttpGet]
public JsonResult getSkills()
{
int departmentId = 0;
int.TryParse(Convert.ToString(Session["departmentId"]), out departmentId);
SkillRepository.GetSkills(departmentId);//sometimes i am getting error here because of Session["departmentId" becomes null
}
http://localhost:2220/Employee/EmployeeList
http://localhost:2220/Department/DepartmentList
http://localhost:2220/EmployeeSkills/Skills (Will not be accessible and visible without department selection)
http://localhost:2220/Payroll/Salary (Will not be accessible and visible without department selection)
http://localhost:2220/EmployeeLeave/LeaveManagement (Will not be accessible and visible without department selection)
http://localhost:2220/EmployeeAttendance/Attendance (Will not be accessible and visible without department selection)
http://localhost:2220/EmployeePerformance/Performance (Will not be accessible and visible without department selection)
原因:这就是为什么我使用会话来存储部门id,以便在所有其他页面上使用(技能,工资leave等)。
只有当用户更改下拉菜单(在$("#department").change()内)时才调用位置更改器逻辑,刷新时也不会调用它。将您的逻辑移到change方法之外,它可能会工作。
根据会话值你可以重定向到不同的页面