gpt4 book ai didi

angular - 循环遍历@ViewChildren 原生元素

转载 作者:行者123 更新时间:2023-12-02 20:16:16 25 4
gpt4 key购买 nike

给定以下标记

<div *ngFor="let item of items">
<input type="text" #val />
</div>

我在一个组件中定义

@ViewChildren('val') rows;

然后我禁用了第一个输入元素

this.rows.first.nativeElement.disabled = true;

如何循环禁用所有输入?

这行不通

this.rows.forEach(val => val.disabled = true);

这也行不通

this.rows.forEach(val => val.nativeElement.disabled = true);

最佳答案

要遍历子项,请像这样使用 toArray():

this.rows.toArray().forEach(val => val.nativeElement.disabled = true);

关于angular - 循环遍历@ViewChildren 原生元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52324250/

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