这种情况

我试图在我的Angular应用程序中创建一个非常简单的表单,但无论如何,它都无法工作。

Angular版本

Angular 2.0.0 RC5

这个错误

不能绑定到'formGroup'因为它不是'form'的已知属性

的代码

视图

<form [formGroup]="newTaskForm" (submit)="createNewTask()">
   <div class="form-group">
      <label for="name">Name</label>
      <input type="text" name="name" required>
   </div>
   <button type="submit" class="btn btn-default">Submit</button>
</form>

控制器

import { Component } from '@angular/core';
import { FormGroup, FormControl, Validators, FormBuilder }  from '@angular/forms';
import {FormsModule,ReactiveFormsModule} from '@angular/forms';
import { Task } from './task';

@Component({
    selector: 'task-add',
    templateUrl: 'app/task-add.component.html'

})
export class TaskAddComponent {

    newTaskForm: FormGroup;

    constructor(fb: FormBuilder)
    {
        this.newTaskForm = fb.group({
            name: ["", Validators.required]
        });
    }

    createNewTask()
    {
        console.log(this.newTaskForm.value)
    }
}

《ngModule

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule }   from '@angular/forms';

import { routing }        from './app.routing';
import { AppComponent }  from './app.component';
import { TaskService } from './task.service'

@NgModule({
    imports: [
        BrowserModule,
        routing,
        FormsModule
    ],
    declarations: [ AppComponent ],
    providers: [
        TaskService
    ],
    bootstrap: [ AppComponent ]
})
export class AppModule { }

这个问题

为什么会出现这个错误?我遗漏了什么吗?


当前回答

该错误表示在此模块中无法识别FormGroup。因此,您必须在每个使用FormGroup的模块中导入这些(下面)模块

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

然后将FormsModule和ReactiveFormsModule添加到模块的imports数组中。

imports: [
  FormsModule,
  ReactiveFormsModule
],

你可能会想,我已经在AppModule中添加了它,它应该从它继承?但事实并非如此。因为这些模块导出的是必需的指令,而这些指令只能在导入模块中使用。在共享模块中阅读更多。

导致这些错误的其他因素可能是拼写错误,如下所示…

[FormGroup]="form"大写F而不是小写F

[formsGroup]="form" form后面多出的s

其他回答

不能绑定到'formGroup'因为它不是'form'的已知属性

意味着你尝试使用angular ([prop])绑定一个属性,但angular不能找到他知道的任何元素(在这种情况下的形式)。

这可能是由于没有使用正确的模块(在某些地方缺少导入),有时只是导致打字错误,如:

[formsGroup], form后面加s

注意:如果你在子模块的组件中工作,那么你只需要在子模块中导入ReactiveFormsModule,而不是在父应用程序根模块中。

如果,已经导入

import { FormsModule, ReactiveFormsModule } from '@angular/forms';`

在rootModule和customComponentModule中仍然得到错误

NG8002:不能绑定到'formGroup',因为它不是已知的属性 “形式”

只是,

重新启动应用服务器

这将解决问题

对于Angular 14和使用带有路由的子模块的人

我的问题与使用带有路由的子模块有关。 要做到这一点,请遵循以下三个步骤:

1-在app.module中

imports: [
//other-modules
ReactiveFormsModule

]

2-在子模块中

imports: [
//other-modules
ReactiveFormsModule

]

3-在应用路由中。模块添加以下路由(我的模块名为AuthModule)

{
path: 'signup',
component: SignUpComponent,
children: [
  {
    path: '',
    loadChildren: () =>
      import('./features/auth/auth.module').then((m) => m.AuthModule),
  },
]

},

希望有一天这能帮助到别人!

使用并导入REACTIVE_FORM_DIRECTIVES:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AppComponent }  from './app.component';

@NgModule({
    imports: [
        BrowserModule,
        FormsModule,
        ReactiveFormsModule
    ],
    declarations: [
        AppComponent
    ],
    bootstrap: [AppComponent]
})

export class AppModule { }