深入解析Angular Component的源码示例

news/2024/7/2 23:41:11

本篇文章主要介绍了剖析Angular Component的源码示例,写的十分的全面细致,具有一定的参考价值,对此有需要的朋友可以参考学习下。如有不足之处,欢迎批评指正。

Web Component

定义

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 文档的方法,<link rel="import" href="example.html" rel="external nofollow" />。

概括来说就是,可以创建自定义标签来引入组件是前端组件化的基础,在页面引用 HTML 文件和 HTML 模板是用于支撑编写组件视图和组件资源管理,而 Shadow DOM 则是隔离组件间代码的冲突和影响。

示例

定义hello-component

<template id="hello-template"><style>h1 {color: red;}</style><h1>Hello Web Component!</h1>
</template><script>// 指向导入文档,即本例的index.htmlvar indexDoc = document;// 指向被导入文档,即当前文档hello.htmlvar helloDoc = (indexDoc._currentScript || indexDoc.currentScript).ownerDocument;// 获得上面的模板var tmpl = helloDoc.querySelector('#hello-template');// 创建一个新元素的原型,继承自HTMLElementvar 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元素就是此组件实例的宿主元素。

组件元数据

自身元数据属性

从 core/Directive 继承

几种元数据详解

以下几种元数据的等价写法会比元数据设置更简洁易懂,所以一般推荐的是等价写法。

inputs

@Component({selector: 'demo-component',inputs: ['param']
})
export class DemoComponent {param: any;
}

等价于:

@Component({selector: 'demo-component'
})
export class DemoComponent {@Input() param: any;
}

outputs

@Component({selector: 'demo-component',outputs: ['ready']
})
export class DemoComponent {ready = new eventEmitter<false>();
}

等价于:

@Component({selector: 'demo-component'
})
export class DemoComponent {@Output() ready = new eventEmitter<false>();
}

host

@Component({selector: 'demo-component',host: {'(click)': 'onClick($event.target)', // 事件'role': 'nav', // 属性'[class.pressed]': 'isPressed', // 类}
})
export class DemoComponent {isPressed: boolean = true;onClick(elem: HTMLElement) {console.log(elem);}
}

等价于:

@Component({selector: 'demo-component'
})
export class DemoComponent {@HostBinding('attr.role') role = 'nav';@HostBinding('class.pressed') isPressed: boolean = true;@HostListener('click', ['$event.target'])onClick(elem: HTMLElement) {console.log(elem);}
}

queries - 视图查询

@Component({selector: 'demo-component',template: `<input #theInput type='text' /><div>Demo Component</div>`,queries: {theInput: new ViewChild('theInput')}
})
export class DemoComponent {theInput: ElementRef;
}

等价于:

@Component({selector: 'demo-component',template: `<input #theInput type='text' /><div>Demo Component</div>`
})
export class DemoComponent {@ViewChild('theInput') theInput: ElementRef;
}

queries - 内容查询

<my-list><li *ngFor="let item of items;">{{item}}</li>
</my-list>@Directive({selector: 'li'
})
export class ListItem {}@Component({selector: 'my-list',template: `<ul><ng-content></ng-content></ul>`,queries: {items: new ContentChild(ListItem)}
})
export class MyListComponent {items: QueryList<ListItem>;
}

等价于:

@Component({selector: 'my-list',template: `<ul><ng-content></ng-content></ul>`
})
export class MyListComponent {@ContentChild(ListItem) items: QueryList<ListItem>;
}

styleUrls、styles

styleUrls和styles允许同时指定。
优先级:模板内联样式 > styleUrls > styles。
建议:使用styleUrls引用外部样式表文件,这样代码结构相比styles更清晰、更易于管理。同理,模板推荐使用templateUrl引用模板文件。

changeDetection

ChangeDetectionStrategy.Default:组件的每次变化监测都会检查其内部的所有数据(引用对象也会深度遍历),以此得到前后的数据变化。
ChangeDetectionStrategy.OnPush:组件的变化监测只检查输入属性(即@Input修饰的变量)的值是否发生变化,当这个值为引用类型(Object,Array等)时,则只对比该值的引用。
显然,OnPush策略相比Default降低了变化监测的复杂度,很好地提升了变化监测的性能。如果组件的更新只依赖输入属性的值,那么在该组件上使用OnPush策略是一个很好的选择。

encapsulation

ViewEncapsulation.None:无 Shadow DOM,并且也无样式包装。
ViewEncapsulation.Emulated:无 Shadow DOM,但是通过Angular提供的样式包装机制来模拟组件的独立性,使得组件的样式不受外部影响,这是Angular的默认设置。
ViewEncapsulation.Native:使用原生的 Shadow DOM 特性。

生命周期

当Angular使用构造函数新建组件后,就会按下面的顺序在特定时刻调用这些生命周期钩子方法:

结语

感谢您的观看,如有不足之处,欢迎批评指正。


http://lihuaxi.xjx100.cn/news/245172.html

相关文章

趣味图形之 余弦函数cos与直线相交(另一种相交)

高中的时候做的&#xff0c;前两天看了看&#xff0c;挺好玩的。只想说&#xff0c;当初的代码风格&#xff0c;&#xff0c;&#xff0c;&#xff0c;咳咳&#xff0c;算不上风骚&#xff01;#include <math.h> #include <stdio.h> int main (void) {double y;int…

获得服务器硬件信息(CPUID、硬盘号、主板序列号、IP地址等)

1 // 注意&#xff1a;首先要在项目中添加引用 System.Management 2 3 using System;4 using System.Collections.Generic;5 using System.Linq;6 using System.Web;7 using System.Management;8 9 public class Computer10 {11 public string CpuID; //CPU的ID 12 …

【跟着我们学Golang】之异常处理

Java中的异常分为Error和Exception来处理&#xff0c;这里也以错误和异常两种&#xff0c;来分别讲一讲Go的异常处理。 Go 语言没有类似 Java 或 .NET 中的异常处理机制&#xff0c;虽然可以使用 defer、panic、recover 模拟&#xff0c;但官方并不主张这样做。Go 语言的设计者…

Java基础教程(15)--枚举类型

枚举类型定义了一个枚举值的列表&#xff0c;每个值是一个标识符。例如&#xff0c;下面的语句声明了一个枚举类型&#xff0c;用来表示星期的可能情况&#xff1a; public enum Day {SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY } 实际上&#xff0c;这个…

JS数字转换成货币格式

2019独角兽企业重金招聘Python工程师标准>>> // Extend the default Number object with a formatMoney() method:// usage: someVar.formatMoney(decimalPlaces, symbol, thousandsSeparator, decimalSeparator)// defaults: (2, "$", ",", &q…

android中设置控件获得焦点 (转)

android中&#xff0c;要使控件获得焦点&#xff0c;需要先setFocus,再requestFocus。 以Button为例&#xff1a; btn.setFocusable(true); btn.setFocusableInTouchMode(true); btn.requestFocus(); btn.req…

分享一波 RabbitMQ 面试题有答案

1、什么是rabbitmq 2、为什么要使用rabbitmq 3、使用rabbitmq的场景 4、如何确保消息正确地发送至RabbitMQ&#xff1f; 如何确保消息接收方消费了消息&#xff1f; 发送方确认模式 接收方确认机制 接收方消息确认机制 下面罗列几种特殊情况 5.如何避免消息重复投递或重…

量子力学又一突破,中国科学家首次实现量子纠缠态自检验

这也是国际上首个具有“高可靠、抗干扰”特性的纠缠态自检验实验。 最近&#xff0c;量子力学领域又传来好消息&#xff0c;中国科学技术大学的郭光灿院士团队在实验中首次实现了量子纠缠态的自检验&#xff0c;推动了自检验在各种量子信息过程中的基础发展。 何为量子纠缠&a…