Первая проблема была решена, благодаря моим хорошим друзьям, которые ответили на мой вопрос и дали мне лучшие решения, но теперь я сталкиваюсь с новой «проблемой»
Я создал таблицу, чтобы показать данные в формате JSON, но я все еще хочу организовать и разделить данные, содержащиеся в JSON
Вот как это выглядит прямо сейчас:
Фактическая таблица
И вот как я хочу показать информацию:
Таблица целей
Это код HTML:
<div class="container">
<table>
<thead>
<tr>
<th>ID</th>
<th>Latitude</th>
<th>Longitude</th>
<th>Inf. Data</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let device of devices | async">
<td>{{device.key}}</td>
<td>|-8.8780555725098|</td>
<td>|-36.463222503662|</td>
<td>2019-05-07T07:42:31Z</td>
<!--<td>{{device.key}}</td>
<td>{{device | json}}</td>
<td><button (click)="getCurrentDevice(device)" mat-button>More</button></td>-->
</tr>
</tbody>
</table>
</div>
И файл .ts:
import { Component } from '@angular/core';
import { AngularFireDatabase } from "angularfire2/database";
import { Observable } from 'rxjs';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
devices: Observable<any[]>;
constructor(db: AngularFireDatabase) {
let list = db.list('/busao/devices');
this.devices = list.snapshotChanges()
list.snapshotChanges().subscribe(console.log)
/*this.devices_values = db.list('/busao/devices').valueChanges();*/
}
getCurrentDevice(device): void{
console.log(device);
}
}