gpt4 book ai didi

c# - 如何使用 session 根据母版页的下拉选择重定向用户?

转载 作者:行者123 更新时间:2023-11-30 16:47:11 24 4
gpt4 key购买 nike

我的母版页上有一个下拉列表,其中包含部门列表。现在我有几个页面显示基于部门选择和更改的记录列表。

因此,当用户从下拉列表中选择新部门时,我对我的 MVC Controller 进行 AJAX 调用,并将部门 ID 发送到该 Controller 并将其存储在 session 中,并在所有页面上使用该 session ,因为我的所有页面都是部门驱动的。

实现:

@{
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)。

因为我有很多页面基本上是部门值(value)驱动的所以当我有部门 id = 0 时我想将用户重定向到/Employee/List 否则只刷新用户当前所在的页面并显示基于 department id 的数据。

那么为丢失页面编写这样的条件是个好主意还是有更好的方法来管理它?

更新

我有以下页面:

我有以下菜单项:

1) 员工列表

2) 部门列表

3)技能

4) 工资

5) 休假管理

6)出勤

7) 性能

现在,当用户登录时,用户将被重定向到以下页面,并且只会看到 2 个菜单项,因为目前在布局页面上的部门下拉列表中没有选择部门:

http://localhost:2220/Employee/EmployeeList 

1) 员工列表

2) 部门列表

现在我们在 http://localhost:2220/Employee/EmployeeList 页面上,所以这当前将列出所有部门的所有员工。

当用户选择合适的部门时,我将对 Controller 进行 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)

原因:这就是为什么我使用 session 来存储部门 ID 以在所有其他页面(技能、薪资休假等)上使用。

最佳答案

只有当用户更改下拉列表(在 $("#department").change() 内)时,您的位置更改器逻辑才会被调用,刷新时也不会调用它。将您的逻辑移到 change 方法之外,它可能会起作用。

关于c# - 如何使用 session 根据母版页的下拉选择重定向用户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39878533/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com