gpt4 book ai didi

带有 *ngFor 的 Angular 2 模板引用变量

转载 作者:太空狗 更新时间:2023-10-29 17:14:24 25 4
gpt4 key购买 nike

<分区>

我有两个组件:列表和详细信息

列表组件中,我想渲染多个详细信息组件

list.component.ts

@Component({
selector: 'detail',
templateUrl: './detail.component.html'
})
export class DetailComponent {
@ViewChild('details') details;

public items = {
// ...
}
}

list.component.html

<detail *ngFor="let item of items" #details></detail>

注意 #details tempalte 引用变量。我想访问所有详细信息组件。可以将 #details 变量设为数组吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com