目标:
执行函数getData2之后,您应该将值检索到变量“ test”。
问题:
我不知道您需要什么语法代码才能实现目标。
信息:
我是Angular的新手
谢谢!
Service
getData2(): Observable<ITest[]> {
return this.http.get<ITest[]>('https://api.github.com/users/hadley/orgs');
}
export interface ITest {
login: string,
node_id: string
}
组件
public test: ITest[];
ngOnInit() {
this.getData2()
}
getData2() {
this.asdfService.getData2().subscribe(res => {
this.test = res;
console.log(this.test);
});
console.log(this.test);
}
export interface ITest {
login: string,
node_id: string
}