Я пытаюсь установить свойство slides [] с данными, полученными из файла json в моей службе карусели.Мой карусельный компонент внедряет карусельный сервис и вызывает публичную функцию getSlides (), но возвращаемое значение - пустой массив.
Что я делаю не так?
При этом код:
//carousel.component.ts
import { Component, OnInit } from '@angular/core';
import { CarouselService } from '../../services/carousel.service';
@Component({
selector: 'app-carousel',
templateUrl: './carousel.component.html',
styleUrls: ['./carousel.component.css']
})
export class CarouselComponent implements OnInit {
slides: string[];
constructor(private carouselService: CarouselService) { }
ngOnInit() {
this.getSlides();
}
getSlides(): void {
this.carouselService.getSlides()
.subscribe(slides => {
console.log('show slides', slides);
this.slides = slides
});
}
}
Carousel.service.ts
import { Injectable } from '@angular/core';
import { Observable, of, ObservableInput } from 'rxjs';
import { HttpClient } from '@angular/common/http';
import { catchError, map, tap } from 'rxjs/operators';
@Injectable({
providedIn: 'root'
})
export class CarouselService {
slides: string[] = [];
constructor(private http: HttpClient) {
this.getJSON().subscribe(data => {
this.slides = data['Carousel'];
console.log('data loaded');
});
}
public addSlide(title: string) {
this.slides.push(title);
}
public getSlides(): Observable<string[]> {
return of(this.slides);
}
private getJSON(): Observable<Object> {
return this.http.get("./assets/carousel.json");
}
}