Sorguyu kendiniz çalıştırmak gerekir, ama oldukça kolaydır. ağaç beklediği çıkışı aşağıda örnekteki gibi json formatında nesnelerin bir dizidir.
tablo yapısı olabilir:
tree_node (id, başlık, parent_id)
Eğer kök düğümü seçmek istiyorsunuz, o ağaç tamamlanana kadar ardışık, çocuk bulunuyor.
function expandTree($node)
{
$result = array('text' => $node['title'], 'children' => array());
$nodes = getChildren($node); // query all nodes whose parent_id = $node['id']
foreach ($nodes as $node) {
$result['children'][] = expandTree($node);
}
return $result;
}
çıkış biçimi:
[
{
"text": "1. Pre Lunch (120 min)",
"expanded": true,
"classes": "important",
"children":
[
{
"text": "1.1 The State of the Powerdome (30 min)"
},
{
"text": "1.2 The Future of jQuery (30 min)"
},
{
"text": "1.2 jQuery UI - A step to richnessy (60 min)"
}
]
},
{
"text": "2. Lunch (60 min)"
},
[...]