@viewChild not working - cannot read property nativeElement of undefined

后端 未结 8 1904
孤街浪徒
孤街浪徒 2020-12-05 06:00

I\'m trying to access a native element in order to focus on it when another element is clicked (much like the html attribute \"for\" - for cannot be used on elements of th

8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-05 06:53

    This error occurs when you're trying to target an element that is wrapped in a condition.

    So, here if I use ngIf in place of [hidden], it will give me TypeError: Cannot read property 'nativeElement' of undefined

    So use [hidden], class.show or class.hide in place of *ngIf.

    
    
       
    Content to render when condition is true.

提交回复
热议问题