View 的置換
ng-content¶
ng-content 允許使用者在一個組件的模板中定義一個插槽,然後在該組件的外部使用時,可以將顯示內容投影到這個插槽中。
ContentChild¶
- 取得符合的元素或是名字 (#name)
- 在 ngAfterContentInit() 裡面取得內容查詢
ViewChild¶
- 會在檢視 DOM 的當中取得符合的元素類型或是名字 (#name)
- 在 ngAfterContentInit() 裡面處理
- ViewChild 取得第一個符合的元素
- ViewChildren 取得一組符合的元素 (List)