使用PHP对SQL查询中的嵌套数组进行分组,以获取jqTree插件的JSON

时间:2014-03-29 05:16:29

标签: php jquery sql json jqtree

这是我关于SO的第一篇文章,所以如果这是这个问题的错误领域我会道歉。

我有一个用PHP编写的页面,我尝试使用名为jqTree的jquery插件创建一个具有特定布局的树。我使用以下返回格式从SQL Server 2008 R2数据库中提取页面加载数据:

╔═════════════╦═══════╦═════════╗
║  Location   ║  SAN  ║  Switch ║
╠═════════════╬═══════╬═════════╣
║ LocationA   ║ SAN1  ║ Switch1 ║
║ LocationA   ║ SAN1  ║ Switch2 ║
║ LocationA   ║ SAN2  ║ Switch3 ║
║ LocationB   ║ SAN3  ║ Switch4 ║
║ LocationB   ║ SAN3  ║ Switch5 ║
║ LocationB   ║ SAN3  ║ Switch6 ║
╚═════════════╩═══════╩═════════╝

我需要树看起来像:

LocationA
    |_ SAN1
    |    |_ Switch1
    |    |_ Switch2
    |_ SAN2
        |_ Switch3

LocationB
    |_ SAN3
         |_ Switch4
         |_ Switch5
         |_ Switch6

根据jqTree网站,JSON必须采用以下格式(我假设):

var data = [
{
    label: 'LocationA',
    children: [
        { label: 'SAN1',
          children: [
               { label: 'Switch1'},
               { label: 'Switch2'}
              ]
        },
        { label: 'SAN2',
          children: [
               { label: 'Switch3'}
              ]
        }
},
{
    label: 'LocationB',
    children: [
        { label: 'SAN1',
          children: [
               { label: 'Switch4'},
               { label: 'Switch5'},
               { label: 'Switch6'}
              ]
}
}
];

我已经尝试过接近的事情:

$locations = array();

foreach ($results as $res) {
if(!in_array($res['town'], $locations, true)){

    $locations[$res['town']]['children'][$res['san']][] = $res['name'];
}
}

但它显然不正确......

我看过嵌套阵列解决方案,有些东西不是为了点击我,所以我希望有人可以帮我解决这个问题。我可以使用其他插件,只要我可以拥有相同/相似的功能。

希望我能够很好地描述这种情况,但如果您需要更多数据,请告诉我。

提前致谢!

1 个答案:

答案 0 :(得分:1)

以下是创建示例JSON的数组:

$data = array(
    array(
        'label' => 'LocationA',
        'children' => array(
            array(
                'label' => 'SAN1',
                'children' => array(
                    array('label' => 'Switch1'),
                    array('label' => 'Switch2')
                )
            ),
            array(
                'label' => 'SANS',
                'children' => array(
                    array('label' => 'Switch3')
                )
            )
        )
    ),
    array(
        'label' => 'LocationB',
        'children' => array(
            array(
                'label' => 'SAN1',
                'children' => array(
                    array('label' => 'Switch4'),
                    array('label' => 'Switch5'),
                    array('label' => 'Switch6')
                )
            )
        )
    )
);

echo json_encode($data);

我认为这应该将您的数据转换为该格式:

$locations = array();

foreach ($results as $res) {
    $locations[ $res['town'] ][ $res['san'] ][] = $res['name'];
}

$data = array();
foreach ($locations as $location => $sans) {
    $location_array = array('label' => $location);
    foreach ($sans as $san => $names) {
        $san_array = array('label' => $san);
        foreach ($names as $name) {
            $san_array['children'][] = array('label' => $name);
        }
        $location_array['children'][] = $san_array;
    };
    $data[] = $location_array;
}

echo json_encode($data);