Uncaught Error: nieoczekiwany moduł „FormsModule” zadeklarowany przez moduł „AppModule”. Dodaj adnotację @ Pipe / @ Directive / @ Component

97

Jestem nowy w Angular. Zacząłem Tour of Heroes, aby się tego nauczyć. Tak więc zostałem stworzony app.componentz two-waywiązaniem.

import { Component } from '@angular/core';
export class Hero {
    id: number;
    name: string;
}
@Component({
    selector: 'app-root',
    template: `
        <h1>{{title}}</h1>
        <h2>{{hero.name}}  details!</h2>
        <div><label>id: </label>{{hero.id}}</div>
        <div><label>Name: </label>
            <input [(ngModel)]="hero.name" placeholder="Name">
        </div>
    `,
    styleUrls: ['./app.component.css']
})
export class AppComponent {
    title = 'Tour of Heroes';
    hero: Hero = {
        id: 1,
        name: 'Windstorm'
    };
}

Zgodnie z tutorialem zaimportowałem FormsModule i dodałem go do tablicy deklaracji. Na tym etapie pojawił się błąd:

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

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

Oto błąd:

Uncaught Error: nieoczekiwany moduł „FormsModule” zadeklarowany przez moduł „AppModule”. Dodaj adnotację @ Pipe / @ Directive / @ Component.

Vlad Poltorin
źródło
11
To „moduł”. Należy do, importsa niedeclarations
Neil Lunn,

Odpowiedzi:

261

FormsModulenależy dodać imports arraynie declarations array.

  • Tablica import jest importem modułów, takich jak BrowserModule, FormsModule,HttpModule
  • Deklaracje Tablica dla waszej Components, Pipes,Directives

patrz poniżej zmiana:

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
Pengyy
źródło
1
Dziękuję za odpowiedź i informację. Pomogło.
Vlad Poltorin,
9

Dodaj FormsModuletablicę importu.
to znaczy

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

Lub można to zrobić bez użycia [(ngModel)]za pomocą

<input [value]='hero.name' (input)='hero.name=$event.target.value' placeholder="name">

zamiast

<input [(ngModel)]="hero.name" placeholder="Name">
Praveen Ojha
źródło
4

Usuń moduł FormsModule z deklaracji: [] i dodaj moduł FormsModule w imporcie: []

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

Fahim zuhair
źródło
więc co dodała twoja odpowiedź, czego inni już nie podali?
Noctis
0

Rzeczy, do których możesz dodać declarations: [] in modules

  • Rura
  • Dyrektywa
  • Składnik

Wskazówka dla profesjonalistów : komunikat o błędzie wyjaśnia to -Please add a @Pipe/@Directive/@Component annotation.

Joshua Michael Wagoner
źródło