我在AngularJS 2中有一个基类,restClient使用这种方法从API调用数据:
public getInfoDataBooleanRequest(url: string): InfoDataBoolean {
return this.http.get(this.urlApiPrefix + url, this.createRequestOptions())
.toPromise()
.then(response => <InfoDataBoolean>response.json())
.catch(this.handleError);
}
其中InfoDataBoolean是一个具有两个属性的类:
export class InfoDataBoolean {
public data: boolean;
public error: string;
}
我有另一个课,我打电话给我的服务方法。 这个调用在一个方法里面,我想从InfoDataBoolean返回数据,而不是像这样的InfoDataBoolean类。
public isLogged(): boolean {
return this.getInfoDataBooleanRequest('islogged').then(x => {
let result: InfoDataBoolean = x;
if(result.error !== "1") {
console.log('Success is failed');
return false;
}
return result.data;
});
}
console.log(isLogged())
的输出:
ZoneAwarePromise {__ zone_symbol__state:null,__ zone_symbol__value:Array [0]}
但我想从方法true
返回false
或isLogged()
。
我该怎么做?
答案 0 :(得分:13)
不要忘记您的isLogged
方法是异步的并返回一个承诺。要获得结果,您需要使用then
方法在其上注册回调:
console.log(isLogged());
isLogged().then(data => {
console.log(data);
});
在您的情况下,您将在解决时显示承诺和返回的结果......