ฉันใหม่ใน Angular ฉันเริ่ม Tour of Heroes เพื่อเรียนรู้มัน ดังนั้นฉันจึงสร้างไฟล์app.component
ด้วยการtwo-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: โมดูลที่ไม่คาดคิด 'FormsModule' ที่ประกาศโดยโมดูล 'AppModule' โปรดเพิ่มคำอธิบายประกอบ @ Pipe / @ Directive / @ Component
imports
และไม่ใช่declarations