gpt4 book ai didi

angular - 如何在 Angular 5 中进行同步调用?

转载 作者:太空狗 更新时间:2023-10-29 18:03:49 29 4
gpt4 key购买 nike

所以,我试图找到这个问题的解决方案。但是,不知何故我无法这样做,可能是因为缺乏 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 时,它总是返回这个而不是我想要的数据: enter image description here

我只想进行同步调用,以便立即获取数据。

我也尝试在服务中使用 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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com