我碰到了this question,这个家伙重复输入框的引用,因为在ngFor中使用了。
我只是想问问这样做是可以的,我的意思是重复元素的引用并像这样在组件内部使用
@ViewChildren('example') example;
ngAfterViewInit() {
// do something with example
}
或者应该使用索引号,例如*ngFor="let item of items; let i = index"
抱歉,这是一个愚蠢的问题,在此先感谢...