我的垫选择选项由于某些原因未显示。标签或选项不显示。
这是我的代码
<mat-form-field>
<mat-label>Tags</mat-label>
<input matInput placeholder="Tags" value="" class="mat-input-custom">
</mat-form-field>
<mat-form-field>
<mat-label>Subjects</mat-label>
<input matInput placeholder="Subjects" value="" class="mat-input-custom">
</mat-form-field>
<mat-form-field class="full-width">
<mat-label>Resolution</mat-label>
<mat-select formControlName="resolution">
<mat-option>HD</mat-option>
<mat-option>4K</mat-option>
<mat-option>Amateur</mat-option>
</mat-select>
</mat-form-field>
我创建了一个堆栈闪电,在此处显示代码 https://stackblitz.com/edit/angular-material-select-demo-oksugs
答案 0 :(得分:1)
查看控制台以查看错误。该错误是由于您的input
而引起的,而该错误又导致mat-select
出现问题。您需要导入MatInputModule
模块。
Here是您更新的StackBlitz。