Angular 5+材质错误位置自动完成

时间:2018-07-05 15:00:57

标签: angular angular-material2

我正在尝试使用角度材料网站中提供的example进行自动填充,当我在应用程序中实现该选项时,这些选项会显示在其他位置,而不是如图enter image description here所示的输入下

我目前在 html文件

中具有以下代码
<form class="example-form">
    <mat-form-field class="example-full-width">
      <input matInput placeholder="State" aria-label="State" 
       [matAutocomplete]="auto" [formControl]="stateCtrl">
      <mat-autocomplete #auto="matAutocomplete">
        <mat-option *ngFor="let state of filteredStates | async" 
          [value]="state.name">
          <img class="example-option-img" aria-hidden [src]="state.flag" 
            height="25">
          <span>{{state.name}}</span> |
          <small>Population: {{state.population}}</small>
        </mat-option>
      </mat-autocomplete>
    </mat-form-field>
</form>

这就是我在 component.ts文件

中所拥有的
import { FormControl } from '@angular/forms';
import { Observable } from 'rxjs';
import { map, startWith } from 'rxjs/operators';

  stateCtrl = new FormControl();
  filteredStates: Observable < State[] >;

  states: State[] = [
    {
      name: 'Arkansas',
      population: '2.978M',
      // https://commons.wikimedia.org/wiki/File:Flag_of_Arkansas.svg
      flag: 'https://upload.wikimedia.org/wikipedia/commons/9/9d/Flag_of_Arkansas.svg'
    }, {
      name: 'California',
      population: '39.14M',
      // https://commons.wikimedia.org/wiki/File:Flag_of_California.svg
      flag: 'https://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_California.svg'
    }, {
      name: 'Florida',
      population: '20.27M',
      // https://commons.wikimedia.org/wiki/File:Flag_of_Florida.svg
      flag: 'https://upload.wikimedia.org/wikipedia/commons/f/f7/Flag_of_Florida.svg'
    }, {
      name: 'Texas',
      population: '27.47M',
      // https://commons.wikimedia.org/wiki/File:Flag_of_Texas.svg
      flag: 'https://upload.wikimedia.org/wikipedia/commons/f/f7/Flag_of_Texas.svg'
    }
  ];

  constructor() {
    this.filteredStates = this.stateCtrl.valueChanges.pipe(startWith(''),
      map(state => state ? this._filterStates(state) : this.states.slice()));
  }

  private _filterStates(value: string): State[] {
    const filterValue = value.toLowerCase();
    return this.states.filter(state => state.name.toLowerCase().indexOf(filterValue) === 0);
}

,在我的 app.module.ts 中,我在导入文件中包含了 formsmodule reactiveformsmodule

对于为什么这些选项没有出现在输入下方以及如何解决此问题的任何想法,将不胜感激。

忘记添加,父组件将调用此子组件(自动完成),如下所示。

<div>
...
  <app-menu></app-menu>
...
</div>

1 个答案:

答案 0 :(得分:3)

解决了这个问题,我错过了棱角分明的材料提供的预制主题。如果有人遇到相同的问题,只需添加

@import "~@angular/material/prebuilt-themes/indigo-pink.css";

到styles.css