角formcontrol在不同的matInput上工作,它们具有相同的formControlName,但在第二个上不起作用。为什么它在第一个上起作用而不在第二个上起作用?任何的想法 ?有什么不同 ?它们就是相同的matInput字段,对吗?谢谢。

为什么在[matAutocomplete] =“auto”时不起作用?有什么选择?

Firstone(有效)-输入中包含问题

<input matInput placeholder="Ex. Pizza" formControlName="question">

secondone(这不会加载问题)
 <input matInput
              #questionSearch
              [ngClass]="!hasSelectedQuestion() ? '' : 'hidden'"
              [matAutocomplete]="auto"
              [matChipInputFor]="chipList"
              formControlName="question"
              required
              class="full-width"
            />

最佳答案

我认为问题出在[matChipInputFor]="chipList"中,它接受数组元素

09-15 19:12