如何从同一元素中使用ngFor项的值?

时间:2017-10-18 10:08:58

标签: javascript angular

这是我的元素

<div *ngFor="let item of items |xxxx ; let l = count "> <div>

<!--use {{l}} in other element-->

我如何获得{{ l }}的值才能在此div之外使用它,或者在直接过滤后在 component.ts 中使用它?

1 个答案:

答案 0 :(得分:3)

将您的模板包裹在<ng-container>中。像这样:

<ng-container *ngFor="let item of items |xxxx ; let l = count ">
    <div ><div>
    <!--use {{l}} in other element-->
</ng-container>