是否可以在 MVC 中的控制器操作中设置 json 对象的值和键
本文关键字:json 对象 设置 控制器 MVC 是否 操作 | 更新日期: 2023-09-27 18:30:29
我是否有可能在此列表中获得相同的选择列表项:
public static List<SelectListItem> GetAreaApprovingAuthorities(int id)
{
List<Employee> approvingAuthorities = new List<Employee>();
using (var db = new TLMS_DBContext())
{
approvingAuthorities = db.Employees.Where(e => e.UserRoleID > 1 && e.PersonnelAreaID == id).ToList();
}
List<SelectListItem> returned = new List<SelectListItem>();
foreach (Employee emp in approvingAuthorities)
{
returned.Add(new SelectListItem { Text = string.Format("{0} {1}", emp.FirstName, emp.LastName), Value = emp.ID.ToString() });
}
return returned;
}
并使用 JSON 将它们传递到选择列表中?以下是获取列表的控制器操作:
public JsonResult GetApprovingAuthorities(int id)
{
return Json(TLMS_DropDownLists.GetAreaApprovingAuthorities(id),JsonRequestBehavior.AllowGet);
}
下面是 json 对象被迭代然后传递到选择列表的地方(当另一个选择列表的值更改时会触发):
$.ajax({
type: 'GET',
data: { id: selectedValue },
url: '@Url.Action("GetApprovingAuthorities")',
contentType: "application/json; charset=utf-8",
global: false,
async: false,
dataType: "json",
success: function (jsonObj) {
$('#aa').empty();
$.each(jsonObj, function (key, value) {
$('#aa').append($("<option/>", {
value: key.Text,
text: value.Text
}));
});
}
});
这是为了填充"aa"选择列表,我正在通过控制器操作中的 FormCollection 接收选择列表的选定项,但我无法从"获取区域审批权限"选择列表项的值中捕获原始 ID。有没有办法让我做到这一点?
当你迭代jsonObj时,它应该是这样的
//the first parameter is just the index of the iteration
//and the second one is the json object (SelectListItem)
$.each(jsonObj, function (index, obj) {
$('#aa').append($("<option/>",
{
value: obj.Value,
text: obj.Text
}));
});