博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
递归循环JSON
阅读量:6140 次
发布时间:2019-06-21

本文共 1861 字,大约阅读时间需要 6 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Web;/// /// JsonHelper 的摘要说明/// public class JsonHelper{    ///     /// 转换JSON对象    ///     ///     /// 
public static string ConvertToJson(Company company) { string json = "CompanyName:\"" + company.CompanyName + "\",ContactName:\"" + company.ContactName + "\",City:\"" + company.City + "\",CustomerID:\"" + company.CustomerID + "\",children:{0}"; return json; } /// /// 转换JSON对象集合,包含子集,递归加载 /// /// ///
public static string ConvertToJson(List
companyList) { string json = "["; //获取第一级目录 List
rootList = companyList.Where(x => string.IsNullOrEmpty(x.Pid)).ToList
(); foreach (Company root in rootList) { string js = ConvertToJson(root); string children=""; children = DiGui(companyList, children, root.CustomerID); json += "{"+string.Format(js, children) + "},"; } if (json.LastIndexOf(",") < 1) { json += "]"; } else { json = json.Substring(0, json.Length - 1) + "]"; } return json.Replace(",children:[]", ""); } ///
/// 递归调用添加包含子集的JSON数组 /// private static string DiGui(List
companyList,string children,string pid) { children = "["; List
childerList = companyList.Where(x => x.Pid.ToUpper() == pid.ToUpper()).ToList
(); foreach (Company item in childerList) { string js = ConvertToJson(item); string cd = ""; cd = DiGui(companyList, cd, item.CustomerID); children += "{"+string.Format(js, cd) + "},"; } if (children.LastIndexOf(",") < 1) { children += "]"; } else { children = children.Substring(0, children.Length - 1) + "]"; } return children; } }

转载地址:http://ecuya.baihongyu.com/

你可能感兴趣的文章
发布一个TCP 吞吐性能测试小工具
查看>>
java学习:jdbc连接示例
查看>>
PHP执行批量mysql语句
查看>>
Extjs4.1.x 框架搭建 采用Application动态按需加载MVC各模块
查看>>
Silverlight 如何手动打包xap
查看>>
建筑电气暖通给排水协作流程
查看>>
JavaScript面向对象编程深入分析(2)
查看>>
linux 编码转换
查看>>
POJ-2287 Tian Ji -- The Horse Racing 贪心规则在动态规划中的应用 Or 纯贪心
查看>>
Windows8/Silverlight/WPF/WP7/HTML5周学习导读(1月7日-1月14日)
查看>>
关于C#导出 文本文件
查看>>
使用native 查询时,对特殊字符的处理。
查看>>
maclean liu的oracle学习经历--长篇连载
查看>>
ECSHOP调用指定分类的文章列表
查看>>
分享:动态库的链接和链接选项-L,-rpath-link,-rpath
查看>>
阿里云企业邮箱 在Foxmail 7.0上POP3/IMAP协议设置方法
查看>>
Javascript一些小细节
查看>>
canvas学习总结
查看>>
Javascript的if判断
查看>>
spring cloud gateway 源码解析(3)记录请求参数及返回的json
查看>>