- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试创建一组允许我呈现表格的组件,其中“用户”只需要提供:
因此,理想情况下,您可以使用这些组件来呈现一个 3 列表,如下所示:
<app-table [data]='sampleData'>
<td>{{cell.toString().toUpperCase()}}</td>
<td class="myClass">{{cell}}</td>
<app-cell [cell]="cell"></app-cell>
</app-table>
...app-table
组件将呈现三个 app-column
组件每一行,并且神奇地将单元格值作为 cell
提供给每一列。然后组件的用户可以完全控制每一列的呈现方式 - 包括将哪些类应用于 td
标记等。
我在尝试实现这一目标时运气不佳。到目前为止我想出的最好的可以在 this StackBlitz 中看到,其中我有一个呈现 tr
的 app-table
组件,它期望其内容为每一列包含一个 ng-template
。标记不像上面的伪标记那样干净:
<app-table [data]='sampleData'>
<ng-template let-cell="cell"><td>{{cell.toString().toUpperCase()}}</td></ng-template>
<ng-template let-cell="cell"><td class="myClass">{{cell}}</td></ng-template>
<ng-template let-cell="cell"><td><app-cell [data]="cell"></app-cell></td></ng-template>
</app-table>
这有点难看,因为将数据向下传递到模板中需要所有额外的标记,但这不是最大的问题。
您会注意到最后一个“列”使用了一个 app-cell
组件,但该组件仍然包含在一个 td
标签中:
<ng-template let-cell="cell">
<td>
<app-cell [data]="cell"></app-cell>
</td>
</ng-template>
这不是我真正想要的:我希望 app-cell
组件自己提供 td
标签,否则它不能(例如)在该元素上设置类。
目前,app-cell
组件有一个 HostBinding
添加了一个类(“foo”),但是它被添加到 app-cell
元素本身,而不是需要它的 td
元素:
<td>
<app-cell class="foo">
<div>...</div>
</app-cell>
</td>
显而易见的事情是将 td
标签移动到 app-cell
组件中,但是如果我 do that ,那么呈现的 HTML 如下所示:
<app-cell class="foo">
<td>
<div>...</div>
</td>
</app-cell>
[好的,所以该类仍然应用在错误的地方,但是很容易看出如何将它向下移动到 td
标签。]
但是,位于 tr
和 td
元素之间的额外伪元素让我担心 - 我使用的浏览器似乎并不介意,但我怀疑我的大部分 CSS 都会被它抛出,因为有些选择器期望 td
是 tr
的直接子元素。
有没有办法摆脱那个额外的伪元素?通常我可能会考虑使用指令,但在这里我看不到如何做到这一点,因为 app-cell
组件需要一个模板,而指令没有这些...
最佳答案
这些类型的组件是我最喜欢的。归根结底,假设您有这样的数据,您需要如下内容
carData = [{
model: 'Mercedes',
year: 2015,
km: 10000
}, {
model: 'Audi',
year: 2016,
km: 5000
}];
并且您希望按原样显示前两列,而对于最后一列您希望显示一些自定义模板。
<app-table [data]="carData">
<app-cell header="Model" field="model"></app-cell>
<app-cell header="Year" field="year"></app-cell>
<app-cell header="Km" field="km" styleClass="km-cell">
<ng-template custom-cell-body let-car>
{{car.km | number}} km
</ng-template>
</app-cell>
</app-table>
这是你可以做的,(我从 Angular Material 和 Primeng 中得到了这个技巧,效果很好)
您可以找到一个工作示例 here
首先为单元格的自定义正文模板定义一个指令。 (你也可以对标题做同样的事情)
@Directive({selector: '[custom-cell-body]'})
export class AppCellBodyTemplate {
constructor(public template: TemplateRef<any>) {}
}
然后让我们定义我们的 AppCellComponent
app-cell.component.ts
@Component({
selector: 'app-cell',
template: `<ng-content></ng-content>`
})
export class AppCellComponent {
@Input() header;
@Input() field;
@Input() styleClass;
@ContentChild(AppCellBodyTemplate) customBody: AppCellBodyTemplate;
}
让我们在 AppTableComponent
将它们粘在一起
app-table.component.ts
@Component({
selector: 'app-table',
templateUrl: './app-table.component.html'
})
export class AppTableComponent {
@Input() data: any[];
@ContentChildren(AppCellComponent) cells: QueryList<AppCellComponent>;
}
app-table.component.html
<table>
<thead>
<tr>
<!-- loop through cells and create header part of the table -->
<ng-container *ngFor="let cell of cells">
<th>{{cell.header}}</th>
</ng-container>
</tr>
</thead>
<tbody>
<tr *ngFor="let row of data">
<!-- loop through cells -->
<ng-container *ngFor="let cell of cells">
<td [ngClass]="cell.styleClass">
<!-- if cell has a custom body, render that -->
<ng-container *ngIf="cell.customBody; else defaultBody">
<ng-container *ngTemplateOutlet="cell.customBody.template;
context: {$implicit: row}">
</ng-container>
</ng-container>
<!-- else render default cell body -->
<ng-template #defaultBody>{{row[cell.field]}}</ng-template>
</td>
</ng-container>
</tr>
</tbody>
</table>
这里有一些需要说明的地方。
template: TemplateRef<any>
在 AppCellBodyTemplate
内因为,我们将使用 custom-body-cell
与 ng-template
一直以来,我们都可以获得其中定义的模板的引用。这template
将在 *ngTemplateOutlet
内使用@ContentChild(AppCellBodyTemplate) customBody
在 AppCellComponent
内就是检测是否有custom-body-cell
定义为 ContentChild
@ContentChildren(AppCellComponent) cells: QueryList<AppCellComponent>
是获取 cells
的实例(你做了类似的事情)。context: {$implicit: row}
就是把一些数据暴露给这个组件的消费者。 $implicit
使您能够使用所需的任何模板变量检索此上下文。因为,我使用了 $implicit
在这里,我能够做到这一点 <ng-template custom-cell-body let-car>
否则,我将不得不定义我的 car
像这样的变量 let-car="rowData"
关于angular - 我可以拥有一个不呈现伪元素的组件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53613070/
我正在尝试在项目中学习和添加 Angular 国际化。我只能理解 Angular 文档 (https://angular.io/guide/i18n-overview) 的编译时翻译。 我需要这样的东
在我的 Angular 应用程序中,基于登录用户,我想通过显示/隐藏不同的菜单项或允许/禁止某些路由来授予或限制功能。 目前成功登录后,我的 .NET Core API 会返回一个 JWT token
我是 Angular 的新手,目前我已经看过 angular.io 网站提供的一些示例。但是在component decorator在文档中的解释,它指出 Angular components are
这里是service employee-service.service.ts的代码 import { Injectable } from '@angular/core'; import { HttpC
我目前正在使用@angular/http URLSearchParams 类来检索 URL 参数。在 Angular 5 中,注意到这已被弃用,但我没有看到以我当前使用的方式替换 URLSearchP
我目前正在使用@angular/http URLSearchParams 类来检索 URL 参数。在 Angular 5 中,注意到这已被弃用,但我没有看到以我当前使用的方式替换 URLSearchP
如何正确安装 PUG/JADE 到 Angular 2 或更高版本 这样在工作和 AOT 和 JiT 的同时 工作单元和集成测试 并且在创建每个新组件时不会受到太多影响 最佳答案 我看到了很多解决方案
我的 Angular 12 应用程序中有一些通用组件,我计划将其创建为一个 Angular 库,以便其他应用程序也可以使用它。我们有一些应用程序在较低版本的 angular(例如 angular 8/
tl;dr; ng build 删除了包含我编译的自定义库的/dist 文件夹。这会使我项目代码中对该库的所有引用无效,从而导致 ng build 最终失败。我做错了什么? 我关注了documenta
我正在将一些“遗留”(非 typescript )js 库导入到我的 Angular SPA 中。 通常我只是从 cdn 添加一个负载到 index.html 就像: 在 Angular 分量中我只
我有这个 angular 应用程序,它基本上使用了库的概念。 我有 2 个名为 的库Lib1 和 lib2 根据他们所服务的微服务分组。 现在我将这些库导入主应用程序,即 应用1 事情一直到现在。 现
我在我的项目中启用了 angular Universal。我现在想完全删除它。我试图删除以下文件 /server.ts /webpack.server.config.js /src/tsconfig.
我已经有一个 AuthService 在登录时对用户进行身份验证,并且 AuthGuard 在未登录的情况下阻止访问。 某些页面我通过 UserProfile/Role 限制访问,但现在我需要阻止页面
我正在尝试使用 angular、TypeORM、SQLite 和其他组件作为 webpack 构建 Electron 应用程序。 我从在 GitHub 上找到的示例开始我的开发:https://git
我在从 Angular 8 更新到 9 并运行时遇到以下错误 ng 更新@angular/material: Package "@angular/flex-layout" has an incompa
我正在尝试使用 Angular 9,我想创建一个项目,然后创建一个库项目并开始向其中添加我想稍后在 GitHub 上发布的通用模块,并在我的本地使用这些库项目。 相关依赖如下: Angular CLI
我正在尝试使用 Angular 9,我想创建一个项目,然后创建一个库项目并开始向其中添加我想稍后在 GitHub 上发布的通用模块,并在我的本地使用这些库项目。 相关依赖如下: Angular CLI
我正在我的 h1 元素“之前”创建一个小的程式化三 Angular 形图案,但我无法正确地圆 Angular 。右上角没问题,但其他两个有剪裁问题。 这是输出以及形状的放大图像: 使用的代码如下: h
我有一个 Angular 元素,带有自定义标记名 - fancy-button。如何将 fancy-button 嵌入 Angular 应用程序? 我已经尝试了以下方法,但都没有用 - 在 index
我已将我的项目从 angular 5.2.9 升级到 angular 6.0.0-rc.5。 除了包路径中的几个快速 RxJS 修复外,一切看起来都不错。(此链接非常有用:Want to upgrad
我是一名优秀的程序员,十分优秀!