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);
本文介绍了在DWZ项目中如何使用combox控件,并通过服务器端输出特定JSON格式的数据。具体步骤包括创建数据集、遍历数据并构造JSON数组,最终返回JSON响应。
1036

被折叠的 条评论
为什么被折叠?



