AngularJS 2 ZoneAwarePromise改为布尔值

时间:2016-06-29 13:21:14

标签: angular

我在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返回falseisLogged()

我该怎么做?

1 个答案:

答案 0 :(得分:13)

不要忘记您的isLogged方法是异步的并返回一个承诺。要获得结果,您需要使用then方法在其上注册回调:

console.log(isLogged());
isLogged().then(data => {
  console.log(data);
});

在您的情况下,您将在解决时显示承诺和返回的结果......