Tag: ngfor

ng作为属性中的索引值

我有一个简单的ngFor循环,它也跟踪当前的index 。 我想在属性中打印该index值。 但我不明白这应该如何工作。 我基本上有这个: <ul *ngFor="#item of items; #i = index" data-index="#i"> <li>{{item}}</li> </ul> 我想在属性data-index打印#i的值。 我尝试了几种方法,但都没有工作。 我在这里有一个演示: http : //plnkr.co/edit/EXpOKAEIFlI9QwuRcZqp?p=preview 如何在data-index属性中打印index值?

在angular2上迭代Ngfor上的json对象

我有麻烦迭代在Ngfor的JSON对象,有我的模板: 模板: <h1>Hey</h1> <div>{{ people| json}}</div> <h1>***************************</h1> <ul> <li *ngFor="#person of people"> {{ person.label }} </li> </ul> 人们是我试图迭代的json对象,我得到(people | json)的结果并且没有得到列表,这里是一个截图: 并完成,这里是json文件的一部分: { "actionList": { "count": 35, "list": [ { "Action": { "label": "A1", "HTTPMethod": "POST", "actionType": "indexation", "status": "active", "description": "Ajout d'une transcription dans le lac de données", "resourcePattern": "transcriptions/", "parameters": [ { "Parameter": { […]