当键是整数字符串时,如何使用* ng-For在ionic中显示JSON数组?

时间:2019-04-18 18:16:22

标签: html json angular ionic-framework ionic4

我正在使用ionic 4,并且尝试通过http.get使用TransportAPI获得一个JSON数组,但是,它们使用整数字符串作为我尝试获取的对象的键,然后有多个每个对象的数组,如下所示:

{
    "departures": {
        "25": [
            {
                "mode": "bus",
                "line": "25",
                "departure_time": "12:40"
            },
            {
                "mode": "bus",
                "line": "25",
                "departure_time": "13:00",
            }
        ],
        "50": [
            {
                "mode": "bus",
                "line": "50",
                "departure_time": "12:46",
            },
            {
                "mode": "bus",
                "line": "50",
                "departure_time": null,
            },
            {
                "mode": "bus",
                "line": "50",
                "departure_time": "14:46",
            }
        ]
    }
}

此JSON数组存储在“ testArray:any;”中实际获得它没有任何问题,因为我可以将其打印到控制台日志中。下班后,我才发现您必须将数字键放入括号表示法,即。 [“ 25”]来访问它们,但是我不确定使用* ngFor时(甚至可以这样做)如何进行操作。这是我要输出的粗略代码:

<div *ngFor="let bus of testArray.departures"> //this is where I'm not too sure

    <ion-item-divider>
        <ion-label> bus line: {{ bus.line }}</ion-label>
    </ion-item-divider>

    <ion-item *ngFor="let time of bus"> //no idea what I'm doing here either
        {{ time.departure_time }}
    </ion-item>
</div>

任何帮助将不胜感激!

编辑:这是我用来获取JSON文件的代码(缺少导入和组件等以节省空间:

export class BusesPage implements OnInit {
  testArray: any;

  constructor(private http: HttpClient) {}

  fillTestArray(){
      this.http.get('assets/test.JSON').subscribe(data => {
          this.testArray = data;
          console.log(this.testArray);
      });
  }

  ngOnInit() {
      this.fillTestArray();
  }

}

1 个答案:

答案 0 :(得分:2)

如果这是您要迭代的数据,则需要使用键值管道,因为这是一个对象。不带* ngFor的对象用于遍历数组。这将使您可以遍历对象。

然后您可以遍历嵌套在对象内部的数组,而无需使用键值管道。应该会显示您想要的数据。

<div *ngIf="testArray">  // checks testArray exists
    <div *ngFor="let bus of testArray.departures | keyvalue">
        <div *ngFor="let data of bus.value">
            <ion-item-divider>
                <ion-label> bus line: {{ data.mode }}</ion-label>
                <ion-label> bus line: {{ data.line }}</ion-label>
                <ion-label> bus line: {{ data.departure_time }}</ion-label>
            </ion-item-divider>
        </div>
    </div>
</div>

keyvalue pipe docs

Angular's displaying data guide