如何将层次结构列表转换为 json
我正在使用 ASP.NET MVC3
我有一个这种类型的层次结构列表:
public class TreeNode
{
public int id;
public int title;
public int parentid;
}
var myHierarchyList=new List<TreeNode>();
//(the tree has a root with id=1 and parentid=0 and title=root)
我需要一个函数从 myHierarchyList 生成 json 数据。像这样的事情:
[{
"id":1,
"text":"cat1",
"childrens":[{
"id":2,
"text":"cat2"
},{
"id":3,
"text":"cat3",
"childrens":[{
"id":4,
"text":"cat4"
},{
"id": 8,
"text":"cat5"
}]
}]
}]
请帮助我。 谢谢。
I am using ASP.NET MVC3
I have a hierarchy list with this type:
public class TreeNode
{
public int id;
public int title;
public int parentid;
}
var myHierarchyList=new List<TreeNode>();
//(the tree has a root with id=1 and parentid=0 and title=root)
I need a function to generate json data from myHierarchyList. somthing like this:
[{
"id":1,
"text":"cat1",
"childrens":[{
"id":2,
"text":"cat2"
},{
"id":3,
"text":"cat3",
"childrens":[{
"id":4,
"text":"cat4"
},{
"id": 8,
"text":"cat5"
}]
}]
}]
Please help me.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看复合设计模式。这允许您构建不同对象的层次结构并递归循环并使用 stringbuilder 生成 xml、json html 等。
Look at the composite design pattern. This allows you to build up the hierarchy of different objects and recursively loop through and use a stringbuilder to generate xml, json html etc.
也许是这样的:
Maybe something like: