เริ่มต้น hello world ใน angular

เริ่มต้น hello world ใน Angular มีดังนี้

  1. ติดตั้ง Angular CLI
1
npm install -g @angular/cli
  1. สร้าง project Angular
1
ng new hello-world
  1. เปิด project Angular ใน Visual Studio Code
1
2
cd hello-world
code .
  1. เพิ่มข้อความ “Hello World” ลงในหน้า HTML
1
<h1>Hello World!</h1>
  1. รัน project Angular
1
ng serve

เบราว์เซอร์จะเปิดหน้าเว็บที่มีข้อความ “Hello World!” แสดงอยู่

ตัวอย่างโค้ด hello world ใน Angular

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {

constructor() {}

ngOnInit() {}

}
1
<h1>Hello World!</h1>

การอธิบายโค้ด

  • @Component() decorator กำหนดว่าคลาส AppComponent เป็นคอมโพเนนต์ Angular
  • selector property กำหนดค่า selector ของคอมโพเนนต์
  • templateUrl property กำหนด URL ของไฟล์ template ที่ใช้แสดงหน้าเว็บ
  • styleUrls property กำหนด URL ของไฟล์ CSS ที่ใช้กำหนดสไตล์ให้กับหน้าเว็บ
  • constructor() ฟังก์ชันตัวสร้างของคอมโพเนนต์
  • ngOnInit() ฟังก์ชันที่ทำงานเมื่อคอมโพเนนต์ถูกโหลด

การทดสอบ hello world

เปิดเบราว์เซอร์ไปที่ http://localhost:4200/

เบราว์เซอร์จะแสดงหน้าเว็บที่มีข้อความ “Hello World!” แสดงอยู่

เพิ่มเติม

หากต้องการปรับแต่งหน้า hello world สามารถแก้ไขไฟล์ app.component.html และ app.component.css ได้

ไฟล์ app.component.html ใช้กำหนดเนื้อหาของหน้าเว็บ

ไฟล์ app.component.css ใช้กำหนดสไตล์ให้กับหน้าเว็บ