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);

相关文章

  jsonp需要在页面中添加一个<script>元素,由该元素来从其他服务器加载json数据。 <body&g...
<script> var testApi = "地址"; $.ajax({ url:testApi,//可以不是本地域名 type:‘post...
总是有人会遇到跨域问题,然后有个jsonp的解决方案,MVC中代码如下: public class JsonpResult : Syst...
最近开发中遇到调用第三方web_api的功能,后端在处理json数据时使用fastjson来做反序列化,由于调用api...
JSON全称为JavaScript ObjectNotation,它是一种轻量级的数据交换格式,易于阅读、编写、解析。jsoncpp...
JsonSerializer有多个属性,用于自定义如何序列化JSON。这些也可以通过JsonSerializerSettings参数,在...