zoukankan      html  css  js  c++  java
  • [Angular] Angular Elements Intro

    Make sure install the latest Angular v6 with Angular CLI. Checkout ght Github for the code.

    1. Create a new application:

    ng new elementApp

    2. Install @angular/elements package:

    ng add @angular/elements --project-name=<your_project_name>

    3. Generate a component:

    ng g c course-title

    4. Conver the element to angular elements: First we need to add our component to 'entryComponents'

    import { BrowserModule } from '@angular/platform-browser';
    import { NgModule, Injector } from '@angular/core';
    import { createCustomElement } from '@angular/elements';
    import { AppComponent } from './app.component';
    import { UserPollComponent } from './user-poll/user-poll.component';
    
    @NgModule({
      declarations: [ UserPollComponent],
      entryComponents: [CourseTitleComponent],
      imports: [BrowserModule]
    })
    export class AppModule {
      constructor(private injector: Injector) {}
    
    }

    5. Connect Custom Element Web API inside our component:

    // course title
    
    constructor(
       private injector: Injector
    )}  
    
    ngOnInit() {
        const htmlElement = createCustomElement(CourseTitleComponent, {injector: this.injector});
        customElements.define('couse-title', htmlElement )
    }
    

      

     6. Now the Angular Element should already work in the broswer. If we want to use Angular Element inside Angular Application, we should add 'schemas':

    @NgModule({
      imports: [
        CommonModule
      ],
      ...
      schemas: [CUSTOM_ELEMENTS_SCHEMA]
    })

    7. If you want to dynamic insert Angular Element into Angular application, such as:

    export class AppComponent {
      addEl() {
        const container = document.getElementById('container');
        container.innerHTML = '<course-title></course-title>';
      }
    }

    You need to add polyfill in order to make it work:

    npm i --save-dev @webcomponents/webcomponentsjs

    Then add into polyfills.js:

    ..
     * APPLICATION IMPORTS
     */
    
    import '@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js';
  • 相关阅读:
    ionic入门之AngularJS扩展基本布局
    ionic入门之AngularJS扩展(一)
    test
    面试题小整理
    使用Code first 进行更新数据库结构(数据迁移)
    SQL模糊查询与删除多条语句复习
    GridView 根据要求显示指定值
    个人工作记录---工作中遇到的sql查询语句解析
    数据库,inner join,left join right join 的区别
    利用set实现去重
  • 原文地址:https://www.cnblogs.com/Answer1215/p/8992242.html
Copyright © 2011-2022 走看看