我在数据库中的数据
目前我的 php 文件正在从数据库中读取数据,例如
$data = array();
$sql = "SELECT * FROM tree";
$q = mysql_query($sql);
while ($r = mysql_fetch_array($q)) {
// check if have a child node
$qq = mysql_query("SELECT `id`, `text` FROM `tree` WHERE parent_id = '". $r['id'] ."'");
if (mysql_num_rows($qq) > 0) {
// if have a child
$r['leaf'] = false;
$r['cls'] = 'folder';
} else {
// if have no child
$r['leaf'] = true;
$r['cls'] = 'file';
}
$data[] = $r;
}
echo json_encode($data);
?>
<div id="tree_el"></div>
我的 JavaScript 是
Ext.require([
'Ext.tree.*',
'Ext.data.*',
'Ext.tip.*'
]);
Ext.onReady(function() {
Ext.QuickTips.init();
var store = Ext.create('Ext.data.TreeStore', {
proxy: {
type: 'ajax',
url: 'treegetdata.php'
},
root: {
text: 'Eatables',
id: 'root_node',
expanded: true
},
folderSort: true,
sorters: [{
property: 'text',
direction: 'ASC'
}]
});
var tree = Ext.create('Ext.tree.Panel', {
store: store,
renderTo: 'tree_el',
height: 300,
width: 250,
title: 'Eatables'
});
});
我目前的结果看起来像这样
我的预期结果应该是
我从数据库中提取数据时出现问题。请帮我修复它,以便达到预期的格式。我相信我的 php 文件中需要修复。