作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
所以,我试图找到这个问题的解决方案。但是,不知何故我无法这样做,可能是因为缺乏 Angular 5 的知识。这是我的服务:
GetCurrentUserData(): Observable<ResponseData> {
return this.http.get<ResponseData>(ApplicationURLS.GetCurrentUserInformation)
.map(response => {
return response;
});
//.catch(error => this.handleError(error));
}
这是我的组件:
public GetCurrentUserInformation(): any {
return this.loginService.GetCurrentUserData().subscribe(data => { return data; });
}
我在这里尝试访问数据:
ngAfterViewInit() {
debugger;
this.responseData = this.GetCurrentUserInformation();
if (this.responseData.code != responseCodes.success) {
this.googleInit();
}
}
当我检查 this.responseData 时,它总是返回这个而不是我想要的数据:
我只想进行同步调用,以便立即获取数据。
我也尝试在服务中使用 do() 但它返回的 do() 不是一个函数。
最佳答案
这可以通过使用 async/await
简化 🔥🔥
public GetCurrentUserInformation(): Promise<any>{
return this.loginService.GetCurrentUserData().toPromise()
}
ngAfterViewInit
async ngAfterViewInit() {
this.responseData = await this.GetCurrentUserInformation(); // 🧙♂️
if (this.responseData.code != responseCodes.success) {
this.googleInit();
}
}
关于angular - 如何在 Angular 5 中进行同步调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47605737/
我是一名优秀的程序员,十分优秀!