1

MatAutocomplete documentationによると、panelMatAutocomplete クラスには、パネルの elementRef を提供するプロパティがあります。

パネル: ElementRef

オートコンプリート オプションを含むパネルの要素。

autocomplete.panel は常に未定義であるため、これを機能させるのに苦労していますか? 私は何が欠けていますか?

<mat-autocomplete #auto="matAutocomplete">
  @ViewChild("auto") autocomplete: MatAutocomplete;

  ngAfterViewInit(): void {
    console.log(this.autocomplete.panel); // undefined??
  }

スタックブリッツ

4

1 に答える 1