无类型函数调用可能不接受类型参数 - Angular 5 个 http 调用

Untyped function calls may not accept type arguments - Angular 5 http calls

我正在尝试使用界面从 API 获取数据。 下面是我的临时界面

export interface ITemp {
    id: number,
    name: string,
    age:  number
}

下面是我的 HTTP 服务,其中有一个 fn getHomedetails,它调用一个 API。

import {Injectable} from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { ITemp } from "../interfaces/temp";
import { Observable } from "rxjs/Observable";
import 'rxjs/Rx';

@Injectable()
export class HttpService{

    http:any;
    baseUrl: String;

    constructor(http:HttpClient){
        this.http = http;
        this.baseUrl = 'some_url';
    }

    getHomeDetails(): Observable<ITemp>  {
        return this.http.get<ITemp>(this.baseUrl); //problem is here 
        //when mouse is pointed on get<ITemp> it shows "Untyped function calls may not accept type arguments"

    }

}

接口未定义。我不知道我做错了什么。上面的语法是 angular 4.3X 语法。 我用过的编辑器是sublime和visual studio.

这是因为您将 class 级别 http 设为 any:

http:any;更改为http: HttpClient

一个好的经验法则是不要使用 any 除非你真的必须这样做。