Как выполнить таргетинг на указанный элемент во вложенном цикле
<ul #parents *ngFor="let parent of parents">
<li #child *ngFor="let child of parents.childGroup"> {{child.name}} </li>
<ul>
Ts File
В моем коде Asper моя цель parents[5].child[0]
, но она работаеткак ребенок parents[0].child[0]
@ViewChildren('parents') parents : QueryList<ElementRef>
@ViewChildren('child') child: QueryList<ElementRef>
this.parents.forEach((item, index) => {
if (index === 5 ) {
(this.child.find( (item , index) => index === 0 ).nativeElement as HTMLElement).click();
}
});
У каждого родителя есть свои дети, Здесь целевые показатели рассчитываются на основе всех дочерних индексов
Как решить эту проблему?