這次帶給大家Angular Component實用技巧詳解,Angular Component使用的注意事項有哪些,下面就是實戰案例,一起來看一下。
Web Component
在介紹Angular Component之前,我們先簡單了解下W3C Web Components
定義
W3C為統一元件化標準方式,提出Web Component的標準。
每個元件包含自己的html、css、js程式碼。
Web Component標準包含以下四個重要的概念:
1.Custom Elements(自訂標籤):可以建立自訂HTML 標記和元素;
2.HTML Templates(HTML模版):使用< ;template> 標籤去預先定義一些內容,但不會載入到頁面,而是使用JS 程式碼去初始化它;
3.Shadow DOM(虛擬DOM):可以建立完全獨立與其他元素的DOM子樹;
4.HTML Imports(HTML導入):一種在HTML 文件中引入其他HTML 文件的方法,。
概括來說就是,可以建立自訂標籤來引入元件是前端元件化的基礎,在頁面引用HTML 檔案和HTML 範本是用來支撐編寫元件檢視和元件資源管理,而Shadow DOM 則是隔離組件間程式碼的衝突和影響。
範例
定義hello-component
<template id="hello-template"> <style> h1 { color: red; } </style> <h1>Hello Web Component!</h1> </template> <script> // 指向导入文档,即本例的index.html var indexDoc = document; // 指向被导入文档,即当前文档hello.html var helloDoc = (indexDoc._currentScript || indexDoc.currentScript).ownerDocument; // 获得上面的模板 var tmpl = helloDoc.querySelector('#hello-template'); // 创建一个新元素的原型,继承自HTMLElement var HelloProto = Object.create(HTMLElement.prototype); // 设置 Shadow DOM 并将模板的内容克隆进去 HelloProto.createdCallback = function() { var root = this.createShadowRoot(); root.appendChild(indexDoc.importNode(tmpl.content, true)); }; // 注册新元素 var hello = indexDoc.registerElement('hello-component', { prototype: HelloProto }); </script>
使用hello-component
<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-COMPATIBLE" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="author" content="赖祥燃, laixiangran@163.com, http://www.laixiangran.cn"/> <title>Web Component</title> <!--导入自定义组件--> <link rel="import" href="hello.html" rel="external nofollow" > </head> <body> <!--自定义标签--> <hello-component></hello-component> </body> </html>
從以上程式碼可看到,hello. html 為標準定義的元件(名稱為hello-component ),在這個元件中有自己的結構、樣式及邏輯,然後在index.html 中引入該元件文件,即可像一般標籤一樣使用。
Angular Component
Angular Component屬於指令的一種,可以理解為擁有模板的指令。其它兩種是屬性型指令和結構型指令。
基本組成
@Component({ selector: 'demo-component', template: 'Demo Component' }) export class DemoComponent {}
元件裝飾器:每個元件類別必須用@component裝飾才能成為Angular元件。
元件元資料:元件元資料:selector、template等,下文將著重講解每個元資料的意義。
元件類:元件其實也是一個普通的類,元件的邏輯都在元件類別裡定義並實作。
元件模板:每個元件都會關聯一個模板,這個模板最終會渲染到頁面上,頁面上這個DOM元素就是此元件實例的宿主元素。
元件元資料
自身元資料屬性
#名稱 | ##類型作用 | |
---|---|---|
AnimationEntryMetadata[] | #設定元件的動畫 | |
ChangeDetectionStrategy | 設定元件的變化監控策略 | |
#ViewEncapsulation | 設定元件的視圖包裝選項 | |
#any[] | #設定將會動態插入到該元件檢視中的元件清單 | |
[string, string] | #自訂元件的內插標記,預設為雙大括號 | |
string | 設定該元件在ES/CommonJS 規範下的模組id,它被用來解析模板樣式的相對路徑 | |
string[] | 設定元件所引用的外部樣式檔案 | |
string[] | 設定元件所使用的內嵌樣式 | |
string | 設定元件的內嵌範本 |
從core/Directive 繼承
名稱 | #型別 | 作用 |
---|---|---|
exportAs | string | 設定元件實例在範本中的別名,使得可以在範本中呼叫 |
{[key: string]: string} | 設定元件的事件、動作和屬性等 | |
string[] | 設定元件的輸入屬性 | |
#string[] | #設定元件的輸出屬性 | |
Provider[] | 設定元件及其所有子元件(含ContentChildren)可用的服務( | 依賴注入) |
{[key: string]: any} | #設定需要被注入到元件的查詢 | |
string | 設定用於在範本中識別該元件的 | css選擇器(元件的自訂標籤) |
生命周期钩子 | 调用时机 |
---|---|
ngOnChanges | 在ngOnInit之前调用,或者当组件输入数据(通过@Input装饰器显式指定的那些变量)变化时调用。 |
ngOnInit | 第一次ngOnChanges之后调用。建议此时获取数据,不要在构造函数中获取。 |
ngDoCheck | 每次变化监测发生时被调用。 |
ngAfterContentInit | 使用 |
ngAfterContentChecked | ngAfterContentInit后被调用,或者每次变化监测发生时被调用(只适用组件)。 |
ngAfterViewInit | 创建了组件的视图及其子视图之后被调用(只适用组件)。 |
ngAfterViewChecked | ngAfterViewInit,或者每次子组件变化监测时被调用(只适用组件)。 |
ngOnDestroy | 销毁指令/组件之前触发。此时应将不会被垃圾回收器自动回收的资源(比如已订阅的观察者事件、绑定过的DOM事件、通过setTimeout或setInterval设置过的计时器等等)手动销毁掉。 |
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上是Angular Component實用技巧詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!