我使用DL,DT,DD和ngFor,我角项目中创建一个列表,列表子。 要生成列表,我在组件中使用的数组。 我需要显示和隐藏每个子列表中的特定列表项时,点击。 但在这里,每一个项目点击显示和隐藏每个子列表。 我该如何解决这个问题?
码:
app.component.ts:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'AngularTest';
arr = [
{
'id':1,'pid':0,'name':'Aaa','age':14
},
{
'id':2,'pid':1,'name':'Bbb','age':14
},
{
'id':3,'pid':1,'name':'Ccc','age':14
},
{
'id':4,'pid':0,'name':'Ddd','age':14
},
{
'id':5,'pid':4,'name':'Eee','age':14
},
{
'id':6,'pid':4,'name':'Fff','age':14
},
{
'id':7,'pid':2,'name':'Ggg','age':14
},
{
'id':8,'pid':3,'name':'Hhh','age':14
},
{
'id':9,'pid':0,'name':'Iii','age':14
},
{
'id':10,'pid':0,'name':'Jjj','age':14
},
];
show:boolean = false;
showme(){
this.show = !this.show;
}
}
app.component.html:
<div>
<dl *ngFor="let person of arr">
<dt *ngIf="person.pid==0; then m"></dt>
<ng-template #m>
<dt (click)='showme()'>
{{person.name}}
</dt>
<dl *ngFor="let child of arr">
<dt *ngIf="child.pid==person.id; then s"></dt>
<ng-template #s>
<dd *ngIf="show">
{{child.name}}
</dd>
</ng-template>
</dl>
</ng-template>
</dl>
</div>