Sono nuovo in Angular. Ho avviato Tour of Heroes per impararlo. Quindi, sono stato creato app.component
con two-way
rilegatura.
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'
};
}
Seguendo il tutorial ho importato FormsModule e l'ho aggiunto nell'array delle dichiarazioni. In questo passaggio è apparso un errore:
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 { }
Ecco l'errore:
Errore non rilevato: modulo imprevisto "FormsModule" dichiarato dal modulo "AppModule". Aggiungere un'annotazione @ Pipe / @ Directive / @ Component.
imports
e nondeclarations