MatAutocomplete documentationによると、panel
MatAutocomplete クラスには、パネルの elementRef を提供するプロパティがあります。
パネル: ElementRef
オートコンプリート オプションを含むパネルの要素。
autocomplete.panel は常に未定義であるため、これを機能させるのに苦労していますか? 私は何が欠けていますか?
<mat-autocomplete #auto="matAutocomplete">
@ViewChild("auto") autocomplete: MatAutocomplete;
ngAfterViewInit(): void {
console.log(this.autocomplete.panel); // undefined??
}