Пожалуйста, мне нужна помощь в решении вышеуказанной проблемы. Я разрабатываю приложение для создания фотогалереи с использованием Angular 8, ниже приведены коды:
Для службы:
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import { MediaResponse } from '../_models/mediaresponse';
import { HttpClient } from '@angular/common/http';
@Injectable()
export class PhotosService {
user = JSON.parse(localStorage.getItem('currentUser'));
auth_token = this.user.auth_token;
mediaUrl = '${config.apiUrl}/mainfeed/';
headers = {'Authorization': 'Token ' + this.auth_token };
constructor(private http: HttpClient) { }
public getPhotos(): Observable<MediaResponse> {
console.log(this.headers);
return this.http.get<MediaResponse>(this.mediaUrl, {'headers':this.headers});
}
}
Для компонента:
import { Component, OnInit } from '@angular/core';
import { User, MediaResponse } from '@/_models';
import { UserService, AuthenticationService, PhotosService } from '@/_services';
@Component({
templateUrl: './mainfeed.component.html',
})
export class MainfeedComponent implements OnInit {
currentUser: User;
mediaResponse: MediaResponse;
constructor(
private authenticationService: AuthenticationService,
private photosService: PhotosService
) {
this.currentUser = this.authenticationService.currentUserValue;
}
ngOnInit() {
this.photosService.getPhotos()
.subscribe( response => {
this.mediaResponse = response;
}, error => {
console.log(error);
});
}
}
Код компилируется нормально, но когда я пытаюсь его запустить, я получаю следующую ошибку:
ОШИБКА TypeError: "this.photosService is undefined"
Пожалуйста Кто-нибудь может помочь решить эту проблему?
Спасибо.