Angular
angular สร้าง component
เราลองไปสร้าง component ใน angular กันครับ
ในตัวอย่างนี้เราจะสร้างโดยใช้ angular cli ครับ โดยใช้คำสั่ง ng generate component
ไปดูตัวอย่างเต็ม ๆ กัน
-
เปิด command prompt ขึ้นมา
-
ใช้คำสั่ง ng generate component แล้วตามด้วยชื่อ component ที่ต้องการสร้าง ตามตัวอย่าง
ng generate component my-component
- จากตัวอย่างข้างบน จะสร้าง my-component ใน folder src/app โดยจะมีไฟล์ตามนี้
- my-component.component.ts เป็นไฟล์ typescript
- my-component.component.html เป็นไฟล์ html template
- my-component.component.css เป็นไฟล์ style
- my-component.component.spec.ts เป็นไฟล์สำหรับ test
- จากนี้เราสามารถใช้ component ได้เลย จามตัวอย่าง
<app-my-component></app-my-component>
- เราสามารถใช้
ng g c
แทนคำสั่งng generate component
ได้ - เราสามารถใส่ option ต่าง ๆ ได้ เช่น เราใส่
--spec=false
เพื่อไม่ต้องให้สร้าง test file ได้