如何将displayName添加到Firebase用户? (扑/飞镖)

时间:2020-09-13 10:01:48

标签: firebase flutter dart firebase-authentication

我可以使用Firebase身份验证保存电子邮件和密码。我还使用Cloud Firestore保存了此信息。但是注册后如何添加和保存 displayName

我的代码:

Future registerWithEmailAndPassword(String email, String password) async {
try {
  AuthResult result = await _auth.createUserWithEmailAndPassword(
      email: email, password: password);
  FirebaseUser user = result.user;

  // create a new document for the user with the uid
  await DatabaseService(uid: user.uid)
      .updateUserData('User', user.email, 'test.de/test.png', user.uid);
  return _userFromFirebaseUser(user);
} catch (e) {
  print(e.toString());
  return null;
}

}

注册表格按钮:

onPressed: () async {
  if (_formKey.currentState.validate()) {
    setState(() => loading = true);
    dynamic result = await _auth
        .registerWithEmailAndPassword(
            email, password);
    if (result == null) {
      setState(() {
        error = 'Valid email, please';
        loading = false;
      });
     }
    }
   }

2 个答案:

答案 0 :(得分:4)

您可以使用FirebaseUser类中提供的updateProfile method来更新名称和照片url。

updateProfile({String displayName, String photoURL}).

对于电子邮件,您可以使用其他方法 updateEmail(String newEmail),这是一种异步方法。

或者将用户名直接保存到Firestore中,成功登录后,您可以使用FirebaseFirestore的“设置”方法保存电子邮件,密码和用户名。

答案 1 :(得分:0)

如果要保存用户名以及电子邮件和密码,请输入以下代码

final FirebaseAuth _auth = FirebaseAuth.instance; 

//register with email & password & save username instantly
Future registerWithEmailAndPassword(String name, String password, String email) async {
  try {
    UserCredential result = await _auth.createUserWithEmailAndPassword(email: email, password: password);
    User user = result.user;
    user.updateProfile(displayName: name); //added this line
    return _user(user);
  } catch(e) {
    print(e.toString());
    return null;
  }
}