使用的框架:Angular 8与材料设计
我已经制作了一个表模板,可以在不同的组件中重用我的结构,因此不必重新构建它。 该表可以在每个组件和桌面视图上使用和修改,就像我期望的那样。 现在,我添加了应该看起来不同的mobile-Header-Row,我希望在上下文中将* ngTemplateOutlet与“ isMobile” -Property一起使用可以解决我的问题。 但是在组件中,我只接收数据,而不接收上下文!?
有人有解决这个问题的想法吗?
在我的组件中使用了ng-template,在这里我使用了table-component,但是什么也没显示。使用ng-container向我显示提供的数据。
我的模板表的一部分:
<ng-container matColumnDef="{{ headerValue.field }}-filter" *ngFor="let headerValue of headerValues">
<ng-container *ngIf="headerValue.isSearchable">
<th mat-header-cell *matHeaderCellDef [class.hidden-below-lg]="headerValue.isMobileHeaderRow">
<trp-input-field
formControlName="{{ headerValue.field }}"
placeholder="{{ 'SEARCH' | translate }}"
class="dark"
></trp-input-field>
</th>
<td
mat-cell
*matCellDef="let element"
[class.hidden-below-lg]="headerValue.isMobileHeaderRow"
[innerHTML]="
(element[headerValue.field] ? element[headerValue.field].toString() : '') | translate
"
></td>
</ng-container>
<ng-container *ngIf="!headerValue.isSearchable">
<th mat-header-cell *matHeaderCellDef></th>
</ng-container>
在我的组件中:
<app-table-header
[isSearchable]="true"
name="{{ 'TARGET_AGREEMENT.STORES.FIELDS.NAME' | translate }}"
field="name"
[isMobileHeaderRow]="true"
width="260px"
>
<ng-container *appColumnFormat="let targetAgreement">
{{ targetAgreement.name }} -
{{ targetAgreement.rmsId }}
</ng-container>
</app-table-header>
我的表头指令中使用的我的appColumnFormat指令
@Directive({
selector: '[appColumnFormat]',
})
export class TableColumnFormatDirective {
}
my table-header-Directive
@Directive({
selector: 'trp-table-header',
})
export class TableHeaderDirective {
@Input() public name: string;
@Input() public field: string;
@Input() public width: string;
@Input() public isSearchable = false;
@Input() public isMobileHeaderRow = false;
@Input() public sorting = (_data: any, _sortHeaderId: string):
string => {
return '';
};
@ContentChild(TableColumnFormatDirective, { static: false, read:
TemplateRef })
public template: TemplateRef<any>;
}
我希望在我的组件中有一个上下文对象,例如
->
<td mat-cell *matCellDef="let element; let isMobile" [class.hidden-below-lg]="headerValue.isMobileHeaderRow" [innerHTML]="(element[headerValue.field] ? element[headerValue.field].toString() : '') | translate "></td>
or something
在一开始,我遵循了该教程: https://blog.jonrshar.pe/2017/May/29/angular-ng-template-outlet.html
答案 0 :(得分:0)
尝试一下:
在您的 app-table-header 组件的视图中,而不是使用innerHTML,而是使用* ngTemplateOutlet
<td mat-cell *matCellDef="let element"
[class.hidden-below-lg]="headerValue.isMobileHeaderRow">
<ng-container *ngTemplateOutlet="template; context: { $implicit: element }"></ng-container>
</td>
您在此模板中传递的上下文将细化到您的结构指令。