在Angular專案下執行命令列ng serve --open:
> The ng serve command builds the app, starts the development server, watches the source files, and rebuilds the app as you make changes to those files.
The --open flag opens a browser to http://localhost:4200/.
ng serve命令列執行的事情:
(1) build應用,開啟development伺服器,監聽source檔案的修改,一旦有檔案被編輯,立即自動重新build應用
(2) --open選項的作用:開啟瀏覽器開啟該應用。
瀏覽器裡顯示的應用如下:
我們看到的實際是一個Application shell.這個shell被一個Angular Component控制。
Component是Angular裡一個核心概念,負責顯示資料到頁面上,監聽使用者輸入並響應。
最新評論