啟動順序
index.html
↓
app.module.ts
↓
app.component.ts
↓
app.component.html
現在上面這些 app 為首的檔案,沒有意外就是 根元件,也就是第一齣戲的開始
項目 | 描述 |
---|---|
changeDetection | 給這個 component 使用的 change-detection strategy (中文:變化檢測策略) |
viewProviders | 定義一組 injectable objects 可以顯示到 子 view DOM |
moduleId | 這個 module ID 必須要在 module 和 component 內;這個 component 必須要能夠解析 templates 和 styles 的相對網址;SystemJS 要有 (底線)moduleName 的變數在每個 module ,在 CommonJS 才可以設定 module.id |
template | 使用內部 html |
templateUrl | 使用外部 html 檔案 |
styles | 使用內部 css |
styleUrls | 使用外部 css 檔案 |
animations (中文:動畫) | 一個或多個 animation tigger() 呼叫,包含 state() 和 transition() 定義 |
encapsulation (中文:封裝) | 一種封裝策略針對 template 和 css styles |
interpolation (中文:插入) | 複寫初始封裝開始和結束分隔符號({{ and }}) |
entryComponents (中文:進入的元件) | 一組 components 應該和 這個 component 一起編譯,讓其他 component 加入編譯清單,angular 會新增並儲存一個 ComponentFactory 在 ComponentFactoryResolver |
preserveWhitespaces (中文:保留空白) | true 就保留,false 就移除編譯 template 上多餘的空白,空白指符合 \s 的字符類別在 JS正規式中,預設是 false ,除非在編譯器選項複寫掉 |
繼承 Directive(指令) 的 decorator(裝飾器)
項目 | 描述 |
---|---|
selector | CSS選擇器 識別 directive 在 template 並 觸發 directive 實體化 |
inputs | 列舉一組 data-bound 的 input 屬性 傳給 directiv |
outputs | 一組 event-bound 的 output 屬性,當 output 屬性送出一個事件,該事件會調用 附加在 template 上的 事件 |
providers (中文:供應商) | 在 directive 或 component 擁有 token 並對應到相依位置的供應商,去 部置 injector |
exportAs | 在 template 中,將名稱或名稱群組 分配 directive 給 一個 變數,若是名稱群組可以使用 逗點去分隔 |
queries | 部屬 queries(查詢值) 用於注射到 directive |
jit | 假如是 true,這個 directive 或 component 會略過 AOT編譯,並使用JIT編譯 |
host | 使用 key-value格式,映射 class properties 去管理 綁定 properties, attributes, and events 的 元素(element) |
再度跪求 表格換行方法~~