Я хочу получить свои данные из Localhost на angular, используя Http и Observable, это мой сервис.
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import { of } from 'rxjs';
import { HttpClient } from '@angular/common/http';
import { HttpParams } from '@angular/common/http';
import { IGames } from './games';
@Injectable({
providedIn: 'root'
})
export class GamesService {
constructor(private http: HttpClient) { }
test():Observable<any>{
return of("test");
}
getGames():Observable<IGames[]>{
return this.http.get<IGames[]>('http://localhost/pmn/uas/getgames.php');
}
}
Я создаю этот конструктор, чтобы получить его из любого места
export interface IGames{id:number, name:string, description:string, pictute:string}
это мой games.component.ts
import { Component, OnInit } from '@angular/core';
import { GamesService } from '../games.service';
import { IGames } from '../games';
@Component({
selector: 'app-games',
templateUrl: './games.component.html',
styleUrls: ['./games.component.css']
})
export class GamesComponent implements OnInit {
constructor(private gs:GamesService) { }
games=[];
ngOnInit() {
this.gs.getGames().subscribe(
(data)=>{
this.games=data;
console.log=data;
}
);
}
}
этот код работает, но на моем терминале всегда отображается эта ошибка
ERROR in src/app/games/games.component.ts(18,9): error TS2322: Type 'IGames[]' is not assignable to type '(message?: any, ...optionalParams: any[]) => void'.
Type 'IGames[]' provides no match for the signature '(message?: any, ...optionalParams: any[]): void'.