Jestem nowy w Angular2. Próbowałem utworzyć komponent, ale pokazał błąd.
To jest app.component.ts
plik.
import { Component } from '@angular/core';
import { MyComponentComponent } from './my-component.component';
@Component({
selector: 'my-app',
template: `
<h1>Hello {{name}}</h1>
<h4>Something</h4>
<my-component></my-component>
`,
directives: [MyComponentComponent]
})
export class AppComponent { name = 'Sam' }
To jest komponent, który chcę stworzyć.
import { Component } from '@angular/core';
@Component({
selector: 'my-component',
template: `
<p>This is my article</p>
`
})
export class MyComponentComponent {
}
Pokazywanie dwóch błędów:
- Jeśli
my-component
jest to komponent kątowy, sprawdź, czy jest częścią tego modułu. - Jeśli
my-component
jest składnikiem sieci Web, dodajCUSTOM_ELEMENTS_SCHEMA
do@NgModule.schemas
tego składnika, aby pominąć ten komunikat.
Proszę pomóż.