1. ホーム
  2. angular

[解決済み] Uncaught Error: Unexpected module 'FormsModule' declared by the module 'AppModule'. Pipe/@Directive/@Component アノテーションを追加してください。

2023-01-03 07:22:17

質問

Angularの初心者です。私はそれを学ぶために英雄のツアーを開始しました。 だから、私は app.componenttwo-way のバインディングを使用します。

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'
    };
}

チュートリアルに従って、FormsModuleをインポートし、宣言配列に追加しました。この段階でエラーが発生しました。

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 { }

以下はエラーです。

Uncaught Error: モジュール 'AppModule' によって宣言された予期しないモジュール 'FormsModule' があります。Pipe/@Directive/@Component アノテーションを追加してください。

どのように解決するのですか?

FormsModule に追加する必要があります。 imports array ではなく declarations array .

  • インポート配列 は、以下のようなモジュールをインポートするためのものです。 BrowserModule , FormsModule , HttpModule
  • 宣言の配列 は、あなたの Components , Pipes , Directives

以下の変更を参照してください。

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