我正在尝试使用angular-material2在我的组件中插入一个输入字段。这是我的HTML:

<md-form-field>
    <input type="text">
</md-form-field>

在控制台中,我收到此错误,但是我不明白为什么会收到错误:

最佳答案

首先,您需要在app.module中导入MdFormFieldModule,MdInputModule模块。然后,您需要在mdInput中添加<input>指令。

<md-form-field>
  <input type="text" mdInput>
</md-form-field>

链接到working demo

10-06 11:56