无法绑定到‘ngModel’

无法绑定到‘ngModel’

本文介绍了角度错误:“无法绑定到‘ngModel’,因为它不是‘输入’的已知属性";的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Angular 4,但在控制台中出现错误:

I'm using Angular 4 and I am getting an error in the console:

无法绑定到ngModel",因为它不是input"的已知属性

我该如何解决这个问题?

How can I resolve this?

推荐答案

为了对表单输入使用双向数据绑定,您需要导入 FormsModule 包在你的 Angular 模块中.

In order to use two-way data binding for form inputs you need to import the FormsModule package in your Angular module.

import { FormsModule } from '@angular/forms';

@NgModule({
    imports: [
         FormsModule
    ]

编辑

由于同一个问题有很多重复的问题,我正在完善这个答案.

Since there are lot of duplicate questions with the same problem, I am enhancing this answer.

有两个可能的原因

  • 缺少 FormsModule,因此将其添加到您的模块中,

  • Missing FormsModule, hence Add this to your Module,

import { FormsModule } from '@angular/forms';

@NgModule({
    imports: [
        FormsModule
    ]

  • 检查输入标签中[(ngModel)]的语法/拼写

    这篇关于角度错误:“无法绑定到‘ngModel’,因为它不是‘输入’的已知属性";的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

  • 09-02 03:34