如何以角度访问多个树的项目?

我在项目中使用Angular mat-tree作为表格的过滤器。 我用复选框(image of the trees)创建了3种不同的嵌套树。

我使用后端数据生成了这些树,并在前端(使用Spring和Angular 8)中创建了服务,如下所示。

现在,我想使用this.treeControl.dataNodes.indexOf(node)访问3棵树中的每一项,但问题是dataNodes仅存储最新创建的树(此处为“方案”树)。因此,当我将this.treeControl.dataNodes.indexOf(node)用于另一棵树时,它说:indexOf(node)= -1

我想知道是否有一种方法可以通过索引访问所有这些树的项目。 如果可能,我还需要访问所有级别为0的项目。

我分享了一个stackblitz演示,它是我的代码的简化版本:https://stackblitz.com/edit/angular-wvbg5j

export class FiltersDatabase {
  [x: string]: any;

  dataChangeSub = new BehaviorSubject<TodoItemNode[]>([]);
  dataChangeSce = new BehaviorSubject<TodoItemNode[]>([]);
  dataChangeAlg = new BehaviorSubject<TodoItemNode[]>([]);

  subjectsTypes : SubjectType[];
  scenarios: Scenario[];
  algorithms: Algorithm[];


  get dataSub(): TodoItemNode[] { return this.dataChangeSub.value; }
  get dataSce(): TodoItemNode[] { return this.dataChangeSce.value; }
  get dataAlg(): TodoItemNode[] { return this.dataChangeAlg.value; }

  constructor(private scenarioService : ScenarioService,private protocolService: ProtocolService) {
    this.initialize();
  }

  initialize() {
    // Build the tree nodes from Json object. The result is a list of `TodoItemNode` with nested
    //     file node as children.

    //creating the subjects filter
    this.protocolService.getSubjectTypes().
    subscribe(response => {
      this.subjectsTypes = response;

      let namesSub : any = [];

      this.subjectsTypes.forEach(elem =>{
        let namesSub_node: string = elem.name;
        namesSub.push(namesSub_node);
      });
      let root_objSub: any = {
        "Subjects" : namesSub
      }
      const dataSub = this.buildFileTree(root_objSub,0);
      this.dataChangeSub.next(dataSub);
    });


    //creating the PIs filter
    this.protocolService.getalgorithms()
    .subscribe(response =>{
      this.algorithms = response;

      let namesAlg : any = [];

      this.algorithms.forEach(elem =>{
        let namesAlg_node: string = elem.name;
        namesAlg.push(namesAlg_node);
      });
      let root_objAlg: any = {
        "Algorithms" : namesAlg
      }
      const dataAlg = this.buildFileTree(root_objAlg,0);
      this.dataChangeAlg.next(dataAlg);
    });

    //creating the Scenarios filter
    this.scenarioService.getScenarios()
    .subscribe(response => {
      this.scenarios =response;

      let tree_Sce: any = []; // this will be array of objects
      // collect all the descriptions and names nodes form the data array
      let idSce: any= [];
      let namesSce:any = [];

      this.scenarios.forEach(elem => {

        let idSce_node: number = elem.scenario_id
        idSce.push(idSce_node);

        let namesSce_node: string= elem.name
        namesSce.push(namesSce_node);
      });

      let root_objSce: any = {
        "Scenarios" : {
          "ID": idSce,"Names" : namesSce
        }
      };
      tree_Sce.push(root_objSce);

      const dataSce = this.buildFileTree(root_objSce,0);
      this.dataChangeSce.next(dataSce);
    });


  }

  /**
  * Build the file structure tree. The `value` is the Json object,or a sub-tree of a Json object.
  * The return value is the list of `TodoItemNode`.
  */
  buildFileTree(obj: {[key: string]: any},level: number): TodoItemNode[] {
    return Object.keys(obj).reduce<TodoItemNode[]>((accumulator,key) => {
      const value = obj[key];
      const node = new TodoItemNode();
      node.item = key;

      if (value != null) {
        if (typeof value === 'object') {
          node.children = this.buildFileTree(value,level + 1);
        } else {
          node.item = value;
        }
      }

      return accumulator.concat(node);
    },[]);
  }
}
songxueli405 回答:如何以角度访问多个树的项目?

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/3160892.html

大家都在问