Pedigree/Family tree chart from database(来自数据库的系谱/家谱图)
问题描述
我正在尝试从数据库生成谱系(换句话说,家谱:))表...
I am trying to generate pedigree (in other words family tree :) ) table from database...
我的架构:
CREATE TABLE `horses` ( 
`horse_id` int(10) NOT NULL AUTO_INCREMENT,
`horse_name` varchar(32) NOT NULL,
`horse_sire` int(10) DEFAULT NULL,
`horse_dam` int(10) DEFAULT NULL, 
PRIMARY KEY (`horse_id`),
KEY `FKsire` (`horse_sire`),
KEY `FKdam` (`horse_dam`),
CONSTRAINT `FKdam` FOREIGN KEY (`horse_dam`) REFERENCES `horses` (`horse_id`),
CONSTRAINT `FKsire` FOREIGN KEY (`horse_sire`) REFERENCES `horses` (`horse_id`)
)
附言'horse_dam' 和 'horse_sire' 代表父母......我在这个问题上花了几天时间,搜索,试验......目前我有这个部分解决方案:
p.s. 'horse_dam' and 'horse_sire' represents parents... I have spent days on this problem, searching, experimenting... And currently I have this partly solution:
display_children($selected_horse_id, 5);
        function display_children($parent, $level) {
            mysql_connect('localhost','root','');
            mysql_select_db('hdb');
            $result = mysql_query('SELECT * FROM horses WHERE horse_id="'.$parent.'";');
            while ($row = mysql_fetch_array($result)) {
                echo "<tr><td>";
                echo $row['horse_name'];
                echo "</td></tr>";
                display_children($row['horse_dam'], $level+1);
                display_children($row['horse_sire'],$level+1);
            }
        }
在一行中生成表:(我想不出正确的方法来实现它......我想要的结果是 谱系查询
which generates table in one row :( I cannot think of proper way to implement it... And the result I want is Pedigree Query
非常感谢任何帮助或提示:),提前致谢
Any help or hint is highly appreciated :), Thanks in advance
推荐答案
我几个月前已经解决了问题...我正在发布答案,所以这可能对其他开发人员有所帮助...附言该项目是用 Yii 1.1 编写的
I have already resolved problem few month ago... I'm posting answer, so this might be helpful for other fellow developers... p.s. The project was written in Yii 1.1
首先,在我的 HorseController 中分配了私有数组类型变量,我将在其中保留谱系:
Firstly, in my HorseController assigned private array type variable where I am going to keep Pedigree:
private $horses = array();
然后,我编写了从数据库中获取所有节点(父节点)的函数:
Then, I wrote function that will get all nodes (parents) from database:
public function getParents($id)
{
    global $horses;
    $horses[] = Horses::model()->findByPk($id)->horse_id;
    if($this->loadModel($id)->horse_sire != null && $this->loadModel($id)->horse_dam != null)
    {
        $this->getParents($this->loadModel($id)->horse_sire);
        $this->getParents($this->loadModel($id)->horse_dam);
    }
    return $horses;
}
然后,我修改了 ActionView 函数,其中数据库中的所有节点都将传递给 View
Then, I modified ActionView function, where all nodes from database will be passed to View
public function actionView($id)
{
    $this->horses = $this->getParents($id);
    $this->render('view',array(
        'model'=>$this->loadModel($id),
        'parents'=>$this->horses,
    ));
}
最后是一些显示系谱的丑陋代码(例如系谱查询):)
And finally a bit of UGLY CODE that will show pedigree (like this Pedigree Query) :)
<table>
            <?php
                $reverse_multiplier = (count($parents)+1)/2;
                $last_node_count = 0;
                for($i = 0; $i < count($parents); $i++)
                {
                    if($i == 0 && $last_node_count ==1)
                        echo "<tr>";
                    echo "<td rowspan='$reverse_multiplier'>";
                    echo "<a href=".Yii::app()->baseUrl."/index.php/horses/".Horses::model()->model()->findByPk($parents[$i])->horse_id." >";
                    echo Horses::model()->model()->findByPk($parents[$i])->horse_name;
                    echo "</a>";
                    echo "<br/>";
                    echo Horses::model()->model()->findByPk($parents[$i])->horse_yob;
                    echo "</td>";
                    if($reverse_multiplier == 1 || $reverse_multiplier == 0.5)
                        echo "</tr>";
                    if($reverse_multiplier == 0.5 && $last_node_count <= (count($parents)+1)/4)
                        $reverse_multiplier = (count($parents)+1)/8;
                    else
                        $reverse_multiplier = $reverse_multiplier/2;
                    if($last_node_count == (count($parents)+1)/4)
                    {
                        $reverse_multiplier = (count($parents)+1)/4;
                        $last_node_count=0;
                    }
                    if($reverse_multiplier == 0.5 || $reverse_multiplier == 1)
                        $last_node_count++;
                }
            ?>
        </table>
就是这样:)希望它有帮助...
And that's it :) Hope it was helpful...
这篇关于来自数据库的系谱/家谱图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:来自数据库的系谱/家谱图
				
        
 
            
        - Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
 - PHP - if 语句中的倒序 2021-01-01
 - 如何在 Symfony2 中正确使用 webSockets 2021-01-01
 - 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
 - 覆盖 Magento 社区模块控制器的问题 2022-01-01
 - 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
 - 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
 - Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
 - PHP foreach() 与数组中的数组? 2022-01-01
 - openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
 
