The title might seem weird but what im talking about is basically what this link is doing.
Im look for a way to use the current iterated person
in a <tr>
outside of the *ngFor
scope.
In the link he used ng-repeat-start
and ng-repeat-end
to include multiple tag withing the ng-repeat.
How can i achieve the same behavior withing Angular2 using *ngFor
?
The title might seem weird but what im talking about is basically what this link is doing.
Im look for a way to use the current iterated person
in a <tr>
outside of the *ngFor
scope.
In the link he used ng-repeat-start
and ng-repeat-end
to include multiple tag withing the ng-repeat.
How can i achieve the same behavior withing Angular2 using *ngFor
?
2 Answers
Reset to default 9I had to use the <template>
tag, which made the iterated objected accessible within it.
<ng-template let-person ngFor [ngForOf]="people">
<tr>
<td>{{person.name}}</td>
<td>{{person.gender}}</td>
</tr>
<div>
<span>{{person.details}}</span>
</div>
</ng-template>
Hope it'll help somebody
The * in *ngFor (and really any angular directive) is shorthand that tells angular to surround the element in an ng-template, which is just the angular implementation of . You can read about how that happens at https://angular.io/guide/structural-directives, but I'll reproduce the relevant example below.
If your code contains
<div *ngIf='object'>{{object.property}}</div>
as part of the render process, angular transposes that to
<ng-template [ngIf]='object'>
<div>{{object.property}}</div>
</ng-template>