0

我正在构建一个画廊应用程序,我需要它采用树格式,我使用 jstree 扩展来构建它,我需要 json 采用这种格式:

$(function () {
    $("#demo1").jstree({ 
        "json_data" : {
            "data" : [
                { 
                    "data" : "A node", 
                    "metadata" : { id : 23 },
                    "children" : [ "Child 1", "A Child 2" ]
                },
                { 
                    "attr" : { "id" : "li.node.id1" }, 
                    "data" : { 
                        "title" : "Long format demo", 
                        "attr" : { "href" : "#" } 
                    } 
                }
            ]
        },
        "plugins" : [ "themes", "json_data", "ui" ]
    }).bind("select_node.jstree", function (e, data) { alert(data.rslt.obj.data("id")); });
});

我正在使用这个数据库:

类别: id 名称 id_father

产品: id 名称 价格 category_id

请帮帮我,>_<,我在我的项目中使用了 MVC 结构,并且可以执行诸如 foreach(modelinstance as model) 之类的操作...

帮助我真的需要它,我不知道如何构建它

4

1 回答 1

2

这是我使用的函数,但你的模型中需要CNestedSetBehavior,我推荐这种设置分层数据的方式,因为它检索起来要快得多:

protected function formatJstree(){
        $categories = $this->descendants()->findAll();
        $level=0;
        $parent = 0;
        $data = array();
        foreach( $categories as $n => $category )
        {
            $node = array(
                'data'=> "{$category->title}",
                'attr'=>array('id'=>"category_id_{$category->category_id}")
            );
            if($category->level == $level){
                $data[$parent]["children"][] = $node;
            }
            else if($level != 0 && $category->level > $level){
                if(!isset($data[$n]["children"])){
                    $data[$n]["children"] = array();
                }
                $data[$parent]["children"][] = $node;
            }
            else
            {
                $data[] = $node;
                $parent = $n;
            }
            $level=$category->level;

        }
        return $data;

    }
于 2012-10-07T22:51:37.843 回答