angular custom Element 自定义web component

angular 自定义web组件:

首先创建一个名为myCustom的组件。

引入app.module:

...
import {customComponent} from ‘ ./myCustom.component‘;

@NgModule({
  declarations:[AppComponent,customComponent],
  entryComponents:[customComponent]
    ....
})

export class AppModule{}

  

全局注册:

app.component:

import { Component,Injector} from ‘@angular/core‘;
import { createCustomElement} from ‘@angular/elements‘;
import {customComponents} from ‘./myCustom.component‘;

@Component({

})
export class AppComponent{
 constructor(private injector:Injector){
   const customElementRef=createCustomElement(createCustomElement,{injector});
   customElements.define(‘my-test‘,customElementRef);     

 }
}

Ok,这样完成了‘my-test‘的全局,接下来可以像是用web component那样使用它了.

进入我们的主html:

Index.html

<html>

<body>
  <app-root></app-root>
  <!-- 这是angular程序主引导接口 -->

  <my-test></my-test>
    <!-- 全局注册的angular组件可以直接放在html里使用-->
</body>

</html>

注意:

1. 放在app-root前面,效果是一样的。没有先后之分。

2. my-test的注入依赖,继承自app.component。你可以放心地在里面使用。

3. 作为web component 时,input不能接受变量。output不生效。。

问:

既然angular可以注册全局web component ,那么是否能结合react使用?

当然可以,接着上面的列子:

<html>

<body>
  <app-root></app-root>
  <!-- 这是angular程序主引导接口 -->

  <my-test></my-test>
    <!-- 全局注册的angular组件可以直接放在html里使用-->
 <div id=‘react-app‘></div>
</body>
  <!-- 引入react.js -->

<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>

<script type=‘text/babel‘>
 class ReactApp extends React.Component{
  state={
    showAngularComponent:false
  }
   render(){
     const state=this.state;
     return (
      <div>
        {state.showAngularComponent?<my-test></my-test>:null}
         <button onClick={()=>this.setState({showAngularComponent:!state.showAngularComponent})}>toggle</button>
     </div>
     )

   }
 }

 ReactDOM.render(<ReactApp/>,document.getElementById(‘react-app‘))

</script>
</html>

  完美运行。

 angular component 注册为web component 的技术。让angular的灵活性瞬间暴涨!但是那么有必要结合react使用吗?

当然是得依你的业务要求来定了,比如你的领导强行指定你使用react。

但是当你面对一些功能复杂的组件或页面开发时,react的相对低下的效率,以及大面积重复计算、缓慢的性能,可能让你非常苦恼。此时或许你能考虑下用angular便捷迅速地为你的react项目提供一个高性能且稳定的组件。

加上ng6再一次减肥,核心库如同jquery一样的大小,angular的未来,一片光明。

---

使用custom element之前:

安装webcomponents填充库:

npm install webcomponents/webcomponentsjs --save;

polyfill.ts中引入:

import ‘@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js‘

原文地址:https://www.cnblogs.com/ztwBlog/p/8847531.html

时间: 2024-10-10 16:59:16

angular custom Element 自定义web component的相关文章

Unknown custom element did you register the component correc

1.错误描述 vue.esm.js?efeb:591 [Vue warn]: Unknown custom element: <el-container> - did you register the component correctly? For recursive components, make sure to provide the "name" option. found in ---> <Container> at src/component

使用Visual Studio创建简单的自定义Web Part 部件属性

使用Visual Studio创建简单的自定义Web Part 部件属性 自定义属性使用额外的选项和设置拓展你的Web part部件.本文主要讲解如何使用Visual Studio创建简单的自定义Web Part 部件属性. 1. 打开Visual Studio,点击文件--新建项目--空白SharePoint项目CustomWPProperties.部署为场解决方案. 2. 右击项目添加新项Web Part部件WPPropertyExample,点击添加. 3. 右击WPPropertyExa

Python自定义web框架、Jinja2

WSGI(Web Server Gateway Interface)是一种规范,它定义了使用python编写的web app与web server之间接口格式,实现web app与web server间的解耦. python标准库提供的独立WSGI服务器称为wsgiref. 标准Web框架 #!/usr/bin/env python #coding:utf-8 from wsgiref.simple_server import make_server def RunServer(environ,

专题四:自定义Web浏览器

前言: 前一个专题介绍了自定义的Web服务器,然而向Web服务器发出请求的正是本专题要介绍的Web浏览器,本专题通过简单自定义一个Web浏览器来简单介绍浏览器的工作原理,以及帮助一些初学者揭开浏览器这层神秘的面纱(以前总感觉这些应用感觉很深奥的,没想到自己也可以自定义一个浏览器出来),下面不啰嗦了,进入正题. 一.Web浏览器的介绍 Web浏览器是指可以显示Web服务器或者本地文件系统中的Html文件内容,并让用户与这些文件交互的一种软件,它是网络服务的客户端浏览程序,可向Web服务器发送请求,

[转]Oracle分页之二:自定义web分页控件的封装

本文转自:http://www.cnblogs.com/scy251147/archive/2011/04/16/2018326.html 上节中,讲述的就是Oracle存储过程分页的使用方式,但是如果大量的页面要使用这个分页存储过程,如果利用上节的方式,势必要书写大量的代码.如何才能够少些代码书写量呢?当然了,利用自定义web控件进行一下封装,也许是一个好方法,但是如何进行封装呢? 首先,就是在项目中添加一个“Web 用户控件“的页面,我们定义为:MyPagination.ascx 然后,就是

自定义web用户控件ascx

在页面中使每个产品类别都展示重复的样式又想代码简洁,这时就要设置一个自定义控件. 拖入一个Repeater控件设置好样式 在page_load事件下面写一个属性: protected voidPage_Load(object sender, EventArgs e) { if(!isPostBack) { var data=new T_UserTableAdapter().GetDataById(CatId); Repeater1.DataSource=data; //手动绑定控件 Repeat

[C# 网络编程系列]专题三:自定义Web服务器

转自:http://www.cnblogs.com/zhili/archive/2012/08/23/2652460.html 前言: 经过前面的专题中对网络层协议和HTTP协议的简单介绍相信大家对网络中的协议有了大致的了解的, 本专题将针对HTTP协议定义一个Web服务器,我们平常浏览网页通过在浏览器中输入一个网址就可以看到我们想要的网页,这个过程中浏览器只是一个客户端,浏览器(应用层应用程序)通过HTTP协议把用户请求发送到服务端, 服务器接受到发送来的HTTP请求,然后对请求进行处理和响应

[C# 网络编程系列]专题四:自定义Web浏览器

转自:http://www.cnblogs.com/zhili/archive/2012/08/24/WebBrowser.html 前言: 前一个专题介绍了自定义的Web服务器,然而向Web服务器发出请求的正是本专题要介绍的Web浏览器,本专题通过简单自定义一个Web浏览器来简单介绍浏览器的工作原理,以及帮助一些初学者揭开浏览器这层神秘的面纱(以前总感觉这些应用感觉很深奥的,没想到自己也可以自定义一个浏览器出来),下面不啰嗦了,进入正题. 一.Web浏览器的介绍 Web浏览器是指可以显示Web

使用程序创建自定义Web部件Web Part

使用程序创建自定义Web部件Web Part 使用VS2010你可以通过程序创建自定义Web部件. 1. 以管理员身份打开VS2010.新建项目----空白SharePoint项目.命名MyFirstWebPart,点击确定. 2. 部署为场解决方案. 3. 右击项目添加新项目---Web Part.命名MyFirstWebPart. 4. 查看Web part代码文件,添加如下代码: 5. 点击F6查看能否成功生成项目. 6. 成功后设置断点,F5调试. 7. 调试完毕后,部署. 8. 在站点