我试图在浏览器中显示一个 n 元树结构。
这是从中提取数据结构的示例:
var jsonObj = [{
id: "window1",
name: "Corporate",
children: [
{ id: "window12", name:"IT", children: [
{ id: "window121", name:"Dev", children: [] },
{ id: "window122", name:"Web", children: [] }
] },
{ id: "window13", name:"HR", children: [] },
{ id: "window14", name:"Finance", children: [] }
]
}];
我打算让它(即结构)看起来像这棵树(仅侧面):
http://gravite.labri.fr/images/tidyTree.jpg
目前它看起来很接近http://imm.io/Dz3V,但不完全在那里。
这是我编写的产生该输出的算法:
var create_graph_components = function (json, level, offset) {
for (var i = 0; i < json.children.length; i++) {
offset += create_graph_components(json.children[i], level + 1, offset);
}
if (json.children.length == 0) {
$('#wrapper').append("<div class=\"component window\" style=\"top:"+offset+"px;left: "+level*150+"px\" id=\""+json.id+"\"><strong>"+json.name+"</strong></div>");
offset = 50;
} else {
$('#wrapper').append("<div class=\"component window\" style=\"top:"+offset/2+"px;left: "+level*150+"px\" id=\""+json.id+"\"><strong>"+json.name+"</strong></div>");
}
return offset;
};
所做的就是将 div 添加到页面的正确位置,这就是我遇到的问题。
有没有人知道我可以如何改进我的算法,以更接近我想要的方式漂亮地打印树 - 我想我已经接近了,但失去了想法!