我是Angular的新手。我开始了“英雄之旅”以学习它。因此,我创建了一个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 { }
这是错误:
未捕获的错误:模块'AppModule'声明了意外的模块'FormsModule'。请添加@ Pipe / @ Directive / @ Component批注。
imports
而不是declarations