MVC中JsonResult输出Json

前端之家收集整理的这篇文章主要介绍了MVC中JsonResult输出Json前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

DWZ项目中,使用comBox控件需要服务器端输出如下JSON格式:

[

      ["all","所有城市"],["bj","北京市"]

]

实现方法

List<string[]> deptList = new List<string[]>();
string[] array = new string[2];
List<mBas_Dept> depts = new List<mBas_Dept>();
//这里获得depts数据
foreach (mBas_Dept dept in depts)
{
   array = new string[2];
   array[0] = dept.Dept_Code.ToString();
   array[1] = dept.Dept_Name;
   deptList.Add(array);
}
return Json(deptList,JsonRequestBehavior.AllowGet);
原文链接:https://www.f2er.com/json/290550.html

猜你在找的Json相关文章