Analyzing the source code examples of Angular Component

亚连
Release: 2018-05-26 15:43:52
Original
1174 people have browsed it

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

 
Copy after login

Use hello-component

       Web Component   
     
Copy after login

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 {}
Copy after login

  1. ##Component decorator: Each component class must be decorated with @component To become an Angular component.

  2. Component metadata: Component metadata: selector, template, etc. The following will focus on the meaning of each metadata.

  3. Component class: Component is actually an ordinary class, and the logic of the component is defined and implemented in the component class.

  4. Component template: Each component will be associated with a template, which will eventually be rendered on the page. The DOM element on the page is the host element of this component instance.

Component metadata

Self metadata attributes


Name Type Function animations AnimationEntryMetadata[] Setting component Animation changeDetection ChangeDetectionStrategy Set the component’s change detection strategy encapsulation ViewEncapsulation Set the component's view packaging options entryComponents any[] The settings will be dynamically inserted into Component list in this component view interpolation [string, string] Interpolation mark of custom component, the default is double curly brackets moduleId string Set the module id of the component under the ES/CommonJS specification, which is used to resolve the relative path of template styles styleUrls string[] Set the external style file referenced by the component styles string[] Set the inline style used by the component template string Set the inline template of the component templateUrl string Set the path to the component template viewProviders Provider[] Sets the services available to the component and all its subcomponents (excluding ContentChildren)
Inherits from core/Directive


几种元数据详解

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

inputs

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

等价于:

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

outputs

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

等价于:

@Component({ selector: 'demo-component' }) export class DemoComponent { @Output() ready = new eventEmitter(); }
Copy after login

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); } }
Copy after login

等价于:

@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); } }
Copy after login

queries - 视图查询

@Component({ selector: 'demo-component', template: `  

Demo Component

`, queries: { theInput: new ViewChild('theInput') } }) export class DemoComponent { theInput: ElementRef; }
Copy after login

等价于:

@Component({ selector: 'demo-component', template: `  

Demo Component

` }) export class DemoComponent { @ViewChild('theInput') theInput: ElementRef; }
Copy after login

queries - 内容查询

 
  • {{item}}
  • Copy after login

    @Directive({ selector: 'li' }) export class ListItem {}
    Copy after login

    @Component({ selector: 'my-list', template: ` 
    `, queries: { items: new ContentChild(ListItem) } }) export class MyListComponent { items: QueryList; }
    Copy after login

    等价于:

    @Component({ selector: 'my-list', template: ` 
    ` }) export class MyListComponent { @ContentChild(ListItem) items: QueryList; }
    Copy after login

    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使用构造函数新建组件后,就会按下面的顺序在特定时刻调用这些生命周期钩子方法:


    Name Type Function exportAs string Set the alias of the component instance in the template so that it can be called in the template host { [key: string]: string} Set the events, actions and properties of the component inputs string[] Set the input properties of the component outputs string[] Set the output properties of the component providers Provider[] Set the services (dependency injection) available to the component and all its subcomponents (including ContentChildren) queries {[key: string]: any} Set the query that needs to be injected into the component selector 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设置过的计时器等等)手动销毁掉。

    上面是我整理给大家的,希望今后会对大家有帮助。

    相关文章:

    Ajax发送和接收二进制字节流数据的方法

    laypage前端分页插件实现ajax异步分页

    ajax文件上传成功 解决浏览器兼容问题

    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!

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!