我尝试使用界面从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 "Untype function calls may not accept type arguments"
}
}
界面没有定义。我不知道自己做错了什么。上面的语法是一个有角度的4.3X语法。 我使用的编辑是崇高和视觉工作室。
答案 0 :(得分:7)
只是一个猜测,但我想这是因为你给了你的班级http
一种any
:
将http:any;
更改为http: HttpClient
一个好的经验法则是不要使用any
,除非你真的必须这样做。