Я пытаюсь создать модульную таблицу.
Для этого я использую ссылки на шаблоны и контейнеры ng.
Я сделал этот стек, что довольно просто:
https://stackblitz.com/edit/angular-2xhely
При запуске выдает ошибку
TypeError: templateRef.createEmbeddedView не является функцией
И я уже некоторое время смотрю в Интернете и, похоже, не могу найти решение своей проблемы.
Вот соответствующий код.
Директива
import { Directive, Input, TemplateRef } from '@angular/core';
@Directive({ selector: '[template]' })
export class TemplateDirective {
@Input() template: string;
constructor(public templateRef: TemplateRef<any>) { }
}
Корневой компонент
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<app-table [data]="data">
<ng-template template="body" let-item>
<td>{{item.id}}</td>
<td>{{item.nom}}</td>
</ng-template>
</app-table>`,
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
data = [{ id: 1, nom: 'Max' }];
}
Таблица компонентов
import { Component, OnInit, Input, ContentChildren, QueryList } from '@angular/core';
import { TemplateDirective } from './template.directive';
@Component({
selector: 'app-table',
template: `
<table>
<thead>
<td>ID</td>
<td>NOM</td>
</thead>
<tbody *ngIf="template">
<ng-container *ngFor="let item of data">
<ng-container *ngTemplateOutlet="template; context: { $implicit: item }">
</ng-container>
</ng-container>
</tbody>
</table>
`,
styleUrls: ['./table.component.css']
})
export class TableComponent {
@Input() data: any[];
@ContentChildren(TemplateDirective) templates: QueryList<any>;
template: TemplateDirective;
ngAfterContentInit() {
this.template = this.templates.first.template;
}
}
Редактировать
Я попытался поместить шаблон за пределы селектора таблиц и выдать его, как при вводе в таблицу, и, похоже, он работает. Возможно ли, что вы не можете использовать контент для детей?