如何在firebase中创建用户后立即获取uid

时间:2018-01-03 20:18:12

标签: typescript firebase firebase-authentication

我正在通过

创建一个firebase用户
  fnCreateUserWithEmailAndPassword(email, password) : Observable<any> {
    return Observable.fromPromise(
      this.afAuth.auth.createUserWithEmailAndPassword(email, password)
    );
  }

我如何获得此用户的uid?

1 个答案:

答案 0 :(得分:2)

根据API docs for createUserWithEmailAndPassword(),该函数返回的promise包含一个User对象。用户的uid将位于该对象的uid字段中。