(D3.JS初学者)
将我的php请求转换为JSON后:
var JsonConvert = php echo json_encode($ res)
我想用它来创建可折叠树(D3.JS) https://bl.ocks.org/mbostock/4339083
我认为必须更换
d3.json("flare.json", function(error, flare) {
if (error) throw error;
root = flare;
root.x0 = height / 2;
root.y0 = 0;
function collapse(d) {
if (d.children) {
d._children = d.children;
d._children.forEach(collapse);
d.children = null;
}
}
root.children.forEach(collapse);
update(root);
});
但我不知道如何继续。如果你能帮助我
由于