gpt4 book ai didi

angular - 将 ng-template 传递给子组件

转载 作者:行者123 更新时间:2023-12-02 16:10:47 27 4
gpt4 key购买 nike

我创建了一个可重用的组件来呈现表格。它目前适用于基本表格,但在某些情况下我希望能够自定义表格中的单个列/单元格。

这是我在父组件中使用的代码:

<!-- PARENT TEMPLATE -->
<app-table
[headers]="headers"
[keys]="keys"
[rows]="rows">
</app-table>

// PARENT COMPONENT
public headers: string[] = ['First', 'Last', 'Score', 'Date'];
public keys: string[] = ['firstName', 'lastName', 'quizScore', 'quizDate'];
public rows: Quiz[] = [
{ 'John', 'Doe', 0.75, '2020-01-03T18:18:34.549Z' },
{ 'Jane', 'Doe', 0.85, '2020-01-03T18:19:14.893Z' }
];

以及我在子组件中使用的代码:

<!-- CHILD TEMPLATE -->
<table>
<thead>
<tr>
<td *ngFor="let header of headers">
{{ header }}
</td>
</tr>
</thead>
<tbody>
<tr *ngFor="let row of rows">
<td *ngFor="let key of keys">
{{ render(key, row) }}
</td>
</tr>
</tbody>
</table>

// CHILD COMPONENT
@Input() headers: string[];
@Input() keys: string[];
@Input() rows: any[];

render(key: string, row: any) {
return row['key'];
}

我希望能够在父组件中声明一个模板来修改子组件中的数据。例如,将测验分数转换为百分比或格式化日期,而不直接更改组件中的数据。我设想类似以下内容:

<ng-template #quizScore>
{{ someReferenceToData | percent }} // This treatment gets passed to child
</ng-template>

通过将其传递到我的子组件中,它将获取我渲染的数据并使用百分比管道对其进行格式化。我对 ngTemplateOutlet 、 ngComponentOutlet 、 ng-content 等进行了一些研究,但不确定最好的方法。

最佳答案

您需要将 TemplateRef 从父组件传递到子(表)组件。根据您当前的方法,一种方法是为父组件中的 @ViewChild 引用创建另一个数组,并将其传递给表组件。

但是,我建议通过为列配置创建一个接口(interface)进行一些重构,该接口(interface)具有 headerkey 以及可选的 customCellTemplate。像这样的东西:

重构

import { TemplateRef } from '@angular/core';

export interface TableColumnConfig {
header: string;
key: string;
customCellTemplate?: TemplateRef<any>;
}

然后您可以简化子组件的输入

// CHILD COMPONENT
@Input() columnConfigs: TableColumnConfig[];
@Input() rows: any[];

在父组件中

您对父级中自定义单元格模板定义的愿景是正确的,但您需要访问数据。

HTML

<app-table
[columnConfigs]="columnConfigs"
[rows]="rows">
</app-table>

<!-- name the $implicit variable 'let-whateverIwant', see below for where we set $implicit -->
<!-- double check variable spelling with what you are trying to interpolate -->
<ng-template #quizScore let-someReferenceToData>
{{ someReferenceToData | percent }} // The parent component can do what it likes to the data and even styles of this cell.
</ng-template>

TS - 模板引用在 ngOnInit/ngAfterViewInit 生命周期 Hook 之前未定义

// PARENT COMPONENT
@ViewChild('quizScore', { static: true }) customQuizTemplate: TemplateRef<any>;

public columnConfigs: TableColumnConfiguration[];
public rows: Quiz[] = [
{ 'John', 'Doe', 0.75, '2020-01-03T18:18:34.549Z' },
{ 'Jane', 'Doe', 0.85, '2020-01-03T18:19:14.893Z' }
];

ngOnInit() {
this.columnConfigs = [
{key: 'firstName', header: 'First'},
{key: 'lastName', header: 'Last'},
{key: 'quizScore', header: 'Score', customCellTemplate: customQuizTemplate},
{key: 'quizDate', header: 'Date'}
]
}

关于 static:truestatic:false 的注意事项 - 模板引用是静态的,除非它是用 * 之类的东西动态渲染的ngIf*ngForstatic:true 将在 ngOnInit 中初始化模板引用,static:false 将在 ngAfterViewInit 中初始化它。

在子组件中

您已经在表格中放置了嵌套的 *ngFor,但如果有 customCellTemplate,则需要进行一些内容投影。

<tr *ngFor="let row of rows">
<td *ngFor="let col of columnConfigs">
<!-- if there is no customCellTemplate, just render the data -->
<div *ngIf="!col.customCellTemplate; else customCellTemplate">
{{ render(col.key, row) }}
</div>

<ng-template #customCellTemplate>
<!-- expose data, you could expose entire row if you wanted. but for now this only exposes the cell data -->
<ng-template [ngTemplateOutlet]="col.customCellTemplate"
[ngTemplateOutletContext]="{ $implicit: {{ render(col.key, row) }} }">
</ng-template>
</ng-template>
</td>
</tr>

旁注:如果可以的话,我会将 render(col.key, row) 替换为 row[col.key]

关于angular - 将 ng-template 传递给子组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59583563/

27 4 0