This article mainly introduces the source code examples of analyzing Angular Component. Now I share it with you and give you a reference.
Web Component
Before introducing Angular Component, let’s briefly understand W3C Web Components
Definition
W3C proposes the standard of Web Component to unify the standard way of componentization.
Each component contains its own html, css, and js code.
Web Component standard includes the following four important concepts:
1.Custom Elements (custom tags): You can create custom HTML tags and elements;
2.HTML Templates (HTML templates): use < ;template> tag to predefine some content, but it does not load it into the page, but uses JS code to initialize it;
3.Shadow DOM (virtual DOM): You can create a DOM subtree that is completely independent from other elements;
4.HTML Imports: A method of introducing other HTML documents into HTML documents, .
In summary, the ability to create custom tags to introduce components is the basis for front-end componentization. References to HTML files and HTML templates on the page are used to support writing component views and component resource management, while Shadow DOM It is to isolate the conflicts and impacts of code between components.
Example
Define 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>
Use 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>
As you can see from the above code, hello.html is a component defined according to standards (named hello-component). This component has its own structure, style and logic, and then introduce the component file in index.html, and it can be used like a normal tag.
Angular Component
Angular Component is a type of directive and can be understood as a directive with a template. The other two types are attribute directives and structural directives.
Basic composition
@Component({ selector: 'demo-component', template: 'Demo Component' }) export class DemoComponent {}
Type | Function | |
---|---|---|
AnimationEntryMetadata[] | Setting component Animation | |
ChangeDetectionStrategy | Set the component’s change detection strategy | |
ViewEncapsulation | Set the component's view packaging options | |
any[] | The settings will be dynamically inserted into Component list in this component view | |
[string, string] | Interpolation mark of custom component, the default is double curly brackets | |
string | Set the module id of the component under the ES/CommonJS specification, which is used to resolve the relative path of template styles | |
string[] | Set the external style file referenced by the component | |
string[] | Set the inline style used by the component | |
string | Set the inline template of the component | |
string | Set the path to the component template | |
Provider[] | Sets the services available to the component and all its subcomponents (excluding ContentChildren) |
Type | Function | |
---|---|---|
string | Set the alias of the component instance in the template so that it can be called in the template | |
{ [key: string]: string} | Set the events, actions and properties of the component | |
string[] | Set the input properties of the component | |
string[] | Set the output properties of the component | |
Provider[] | Set the services (dependency injection) available to the component and all its subcomponents (including ContentChildren) | |
{[key: string]: any} | Set the query that needs to be injected into the component | |
string | Set the css selector (custom label of the component) used to identify the component in the template |
生命周期钩子 | 调用时机 |
---|---|
ngOnChanges | 在ngOnInit之前调用,或者当组件输入数据(通过@Input装饰器显式指定的那些变量)变化时调用。 |
ngOnInit | 第一次ngOnChanges之后调用。建议此时获取数据,不要在构造函数中获取。 |
ngDoCheck | 每次变化监测发生时被调用。 |
ngAfterContentInit | 使用 |
ngAfterContentChecked | ngAfterContentInit后被调用,或者每次变化监测发生时被调用(只适用组件)。 |
ngAfterViewInit | 创建了组件的视图及其子视图之后被调用(只适用组件)。 |
ngAfterViewChecked | ngAfterViewInit,或者每次子组件变化监测时被调用(只适用组件)。 |
ngOnDestroy | 销毁指令/组件之前触发。此时应将不会被垃圾回收器自动回收的资源(比如已订阅的观察者事件、绑定过的DOM事件、通过setTimeout或setInterval设置过的计时器等等)手动销毁掉。 |
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
The above is the detailed content of Analyzing the source code examples of Angular Component. For more information, please follow other related articles on the PHP Chinese website!