最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I use *ngFor current object outside of the ngFor? - Stack Overflow

programmeradmin3浏览0评论

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?

Share Improve this question edited Aug 31, 2016 at 17:53 Günter Zöchbauer 659k234 gold badges2.1k silver badges1.6k bronze badges asked Aug 31, 2016 at 12:35 Kesem DavidKesem David 2,2453 gold badges29 silver badges47 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

I 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>
发布评论

评论列表(0)

  1. 暂无评论