我怎么知道FirebaseObjectObservable是空的?

时间:2016-09-28 18:55:05

标签: angular observable angularfire2

所以我在下面有代码获取FirebaseObjectObservable。但这条路是动态的,因为它甚至可能还没有。因此,如果路径不存在,我想创建该路径。但如果它存在,我想更新/修补数据。

  this.userLocationDetail = this.af.database.object('/userProfile/' + uid + '/bbwList/' + afLocationId);
  if (this.userLocationDetail) {

    console.log('Data is found');

  } else {
    console.log('Data not found');
  }

问题是if(this.userLocationDetail)将始终为true。我如何查看可观察的并确保它是空的?

1 个答案:

答案 0 :(得分:3)

您可以在可观察的管道中找到答案。如果您只想返回Observable<boolean>,则可以.map。或者你可以在管道中做一些事情。

this.af.database.object('/userProfile/' + uid + '/bbwList/' + afLocationId)
    .subscribe(x => {    
        if (x.hasOwnProperty('$value') && !x['$value']) {
           console.log('data is not found');
        } else {
           console.log('data is found');
        }
    });

如果您只想要Observable<boolean>

this.af.database.object('/userProfile/' + uid + '/bbwList/' + afLocationId)
    .map(x => {    
        if (x.hasOwnProperty('$value') && !x['$value']) {
           return false;
        } else {
           return true;
        }
    });

或更简洁的版本:

this.af.database.object('/userProfile/' + uid + '/bbwList/' + afLocationId)
    .map(x => !x.hasOwnProperty('$value') || x['$value']);