gpt4 book ai didi

javascript - Angular 中的 document.querySelector

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

我有一个列表,其中每个li都有唯一的data-id

<ul class="list">
<li class="list__el"
*ngFor="let item of cars"
data-id="{{ item.id }}">
</li>
</ul>

在 JS 中我会这样写

let myLi = document.querySelector(`.list__el[data-id="${item.id}"]`)

如何为 Angular 正确重写它?

最佳答案

使用@ViewChildren和一个template reference例如#listItem

@Component({
template: `<ul class="list">
<li #listItem class="list__el"
*ngFor="let item of cars"
data-id="{{ item.id }}">
</li>
</ul>`
})
export component MyComponent implements AfterViewInit {

// Note that the parameter here relates to the #listItem in the template.
@ViewChildren('listItem')
public listItems!: QueryList<ElementRef<HTMLLIElement>>

public ngAfterViewInit() {
console.log(
this.listItems.find(itm =>
itm.nativeElement.getAttribute('data-id') === 'my-element-id'
)
)
}
}

关于javascript - Angular 中的 document.querySelector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65923638/

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