Просто пытаюсь просто отобразить содержимое объекта JSON из запроса GET.
Служба:
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
@Injectable()
export class LightsService {
constructor(private http: HttpClient) {}
fetchLights(): Observable<Object> {
const URL = 'http://****/api/S97t-zlmOCIeKXxQzU66WxWLY2z6oKenpLM95Uvt/lights';
console.log('Service');
return this.http.get(URL);
}
}
Компонент:
import { Component } from '@angular/core';
import { LightsService } from './lights.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.less']
})
export class AppComponent {
lights;
constructor(private lightsService: LightsService) {}
fetchLights() {
console.log('Component');
this.lights = this.lightsService.fetchLights();
console.log(this.lights);
}
}
HTML:
<button (click)="fetchLights()">Fetch Lights</button>
<ul>
<li *ngFor="let light of lights | keyvalue">{{light.key}}:{{light.value}}</li>
</ul>
Я бы предпочел не использовать канал 'keyvalue', но, похоже, это единственный способ получить что-либо возвращаемое вообще, однако вот скриншот того, что возвращается, когда функцияназывается: