0

我一直在努力用 json 数据填充树形网格。我正在从数据库中读取数据,然后将其加载到树形网格中。

我从数据库中获取的 json 数据的格式与下面给出的类似:

{   "data": [{            
    "bike": "Yamaha",
    "color": "Black",
    "cost": 870000
},{
    "bike": "Honda",
    "color": "Red",
    "cost": 675000
},{
    "bike": "Honda",
    "color": "Blue",
    "cost": 690000
},{
    "bike": "Suzuki",
    "color": "White",
    "cost": 800000"
},{
    "bike": "Harley",
    "color": "Yellow",
    "cost": 980000
},{
    "bike": "Harley",
    "color": "Black",
    "cost": 880000
}]}

在我的树面板中,第一列是树列。我为树面板设置了以下属性

                displayField: 'bike',
                rootVisible: false,
                useArrows: true,

我可以将它加载到树网格中,但问题是每个数据都显示在树中的单独节点中。我知道这是因为 json 结构不适合树。

我想以特定格式转换或嵌套 json 数据,如下所示:

{"data": [{            
    "bike": "Yamaha",
    "data": [{
        "bike": "Yamaha",
        "color": "Black",
        "cost": 870000
    }]
},{
    "bike": "Honda",
    "data": [{
        "bike": "Honda",
        "color": "Red",
        "cost": 675000
    },
    {
        "bike": "Honda",
        "color": "Blue",
        "cost": 690000      
    }]
},{
    "bike": "Suzuki",
    "data": [{
        "bike": "Suzuki",
        "color": "White",
        "cost": 800000"
    }]
},{
    "bike": "Harley",
    "data": [{
        "bike": "Harley",
        "color": "Yellow",
        "cost": 980000
    }]
},{
    "bike": "Harley",
    "data": [{
        "bike": "Harley",
        "color": "Black",
        "cost": 880000
    }]
}]}

这样我就可以获得以下输出..

在此处输入图像描述

我不确定如何转换 json 数据。我无法在网上找到合适的解决方案。请帮忙

这是我的商店的样子:

var MyStore = Ext.create('Ext.data.TreeStore', {
        autoLoad: true,
        autoSync: true,
        storeId: 'MyStore',
        model: 'model',
        proxy: {
            type: 'ajax',
            api: {
                read: 'http://localhost/Files/data.json'
            },
            reader: {
                type: 'json',
                messageProperty: 'message',
                successProperty: 'success',
                root: 'data',
                totalProperty: 'total'
            }
        }

});

4

3 回答 3

1

我自己解决了这个问题......我必须修改我的 SQL 查询本身以获取嵌套格式的 Json 数据以填充树网格:

// 我得到节点参数的值

$node = $_POST['node'];
if (empty($node)){
    $node = $_GET['node'];
}

// 根据我查询数据的节点类型

if (strcmp(strtolower($node),"root")==0) {
    // If root node then query all bikes with remaining data as null for setting the parent nodes
    $query = "Select 'PARENT_' || b.id as ID, Null as color, Null as cost from Bikes b";    
} else {
    // Splitting the Id from string
    $node = explode("_", $node);
    $nodeType = $node[0];
    $bikeID = $node[1];

    if (strcmp(strtolower($nodeType),"parent")==0) {            
        // if node is a parent node, then load all child nodes based on bike ID
        $query = "select 'CHILD_' || b.id as ID, b.color as color, b.cost as cost from Bikes b where b.id = ".sprintf('%d',intval($bikeID));                    
    }
}
// execute the query
execute($query);
于 2013-10-11T09:12:58.340 回答
0

您在 Tree Store 中的根配置是什么样的?默认情况下,嵌套数据的预期根属性是“children”,但可以(在您的情况下)更改为“data”

于 2013-05-28T12:42:19.730 回答
0

数据格式是正确的,但其中有语法错误:

{
    "bike": "Suzuki",
    "data": [{
        "bike": "Suzuki",
        "color": "White",
        "cost": 800000"
    }]
}

成本后有一个意外的"字符。修复后,数据可以使用如下配置的树:

Ext.create('Ext.tree.Panel', {
    renderTo: Ext.getBody()
    ,height: 300
    ,rootVisible: false

    ,columns: [{
        xtype: 'treecolumn'
        ,dataIndex: 'bike'
        ,text: 'Bikes'
    },{
        dataIndex: 'color'
        ,text: 'Color'
        ,flex: 2
    },{
        dataIndex: 'cost'
        ,text: 'Cost'
    }]    

    ,store: {
        autoLoad: true,
        autoSync: true,
        fields: ['bike', 'color', 'cost'],
        proxy: {
            type: 'memory'
            ,reader: {
                type: 'json'
                ,root: 'data'
            }
            ,data: data // that's your data object
        }
    }
});

此外,如果您的服务器不支持过滤(例如平面 json 文件),或者如果您想避免大量请求(这可能是您首先尝试加载嵌套数据的原因),您必须添加leaf: true到所有节点......好吧,叶子。或者商店将对每个非离开节点进行服务器请求。

于 2013-05-30T08:30:35.497 回答