ฉันใหม่ใน Angular2 ฉันได้พยายามสร้างส่วนประกอบ แต่เกิดข้อผิดพลาด
นี่คือapp.component.ts
ไฟล์
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' }
นี่คือส่วนประกอบที่ฉันต้องการสร้าง
import { Component } from '@angular/core';
@Component({
selector: 'my-component',
template: `
<p>This is my article</p>
`
})
export class MyComponentComponent {
}
แสดงข้อผิดพลาดสองข้อ:
- หาก
my-component
เป็นส่วนประกอบเชิงมุมให้ตรวจสอบว่าเป็นส่วนหนึ่งของโมดูลนี้ - หาก
my-component
เป็น Web ComponentCUSTOM_ELEMENTS_SCHEMA
ให้เพิ่ม@NgModule.schemas
ส่วนประกอบนี้เพื่อระงับข้อความนี้
กรุณาช่วย.