Angular create Selector Tag lt;app-componentgt; using variable or loop(Angular 创建选择器标签 lt;app-componentgt;使用变量或循环)
问题描述
我需要使用一个变量来制作我的 app.component.html 的 Selector Tag.
I need to make the Selector Tag of my app.component.html using a variable.
假设变量名是:componentVar:string
我需要我的 app.component.html:
I need my app.component.html:
<componentVar></componentVar>
或 <app-componentVar></app-componentVar>
推荐答案
您可以像这样在 ViewcontainerRef 中动态创建组件:
You can dynamically create your components within a ViewcontainerRef like this:
https://stackblitz.com/edit/angular-4asbmc
(不要忘记在你的应用模块的 entryComponents 中添加你想要动态注入到你的 dom 中的组件)
(Don't forget to add the components you want to dynamically inject in your dom in your app module's entryComponents)
一旦您能够插入组件,您应该能够管理哪些组件必须插入到您的条件中.
Once you are able to insert the components you shoud be able to manage which components have to be inserted into your with conditions.
编辑
您可以迭代一个可能如下所示的组件数组:
You can iterate on an array of component that could look like this:
let componentArray = [HeaderComponent, BannerComponent, FooterComponent];
然后遍历这个数组,调用将组件插入到视图容器引用中的方法.
and then iterate over this array calling the method that inserts your components in your viewcontainer reference.
createComponent(component) {
const factory = this.factoryResolver.resolveComponentFactory(component);
const componentRef = factory.create(yourViewContainerRef.parentInjector);
yourViewContainerRef.insert(componentRef.hostView);
}
虽然从你的应用组件 html 模板中调用你的组件会更容易,并且在你的模板中有这样的东西:
Though it would be musch easier to just call your components from your app component html template, and have something like this in your template:
<app-header *ngIf="yourConditions..."></app-header>
<app-banner *ngIf="otherConditions..."></app-banner>
<!-- and so on.... -->
这篇关于Angular 创建选择器标签 <app-component>使用变量或循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Angular 创建选择器标签 <app-component>使用变量或循环
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Flexslider 箭头未正确显示 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01