从树模型项访问数据

时间:2019-05-05 04:34:50

标签: qt qt5

enter image description here enter image description here

这是我的表格视图结构。

如何浏览“表”视图并获得SubChild作为TreeItem元素。

例如-> Group2 $ Child2 $ SubChild。

此行应将子代作为TreeItem *返回。

TreeModel的头文件。

constructor(props){
 super(props);
 this.state = {
  itemsArray1: [],
  itemsArrayMixed: [],
 }
}


handleSetState1() {
 this.setState({ 
  itemsArray1: [
   {name: 'aaa', id: '001', address: 'xxx' },
   {name: 'aaa', id: '002', address: 'yyy'},
   {name: 'ccc', id: '003', address: 'zzz'},
  ]
 });

 this.setState({ itemsArrayMixed: [...itemsArray1] });

}

handleSetState2() {
 this.setState({ 
  itemsArray1: [
   {name: 'ddd', id: '004', address: 'ttt' },
   {name: 'eee', id: '005', address: 'uuu'},
   {name: 'fff', id: '006', address: 'www'},
  ]
 });

 this.setState({ itemsArrayMixed: [...itemsArray1] });

}

console.log(itemsArrayMixed) // => in itemsArrayMixed,  I want to get 6 objects.

我很乐意张贴所需的任何特定代码。

0 个答案:

没有答案