在完全重新加载应用程序之前,不会反映对firebase currentUser所做的更改

时间:2020-04-24 19:41:56

标签: javascript reactjs firebase react-native firebase-authentication

我想更新当前用户的displayName并将其显示在屏幕上。

firebase
        .auth()
        .createUserWithEmailAndPassword(email, password)
        .then((response) => {response.user.updateProfile({displayName: 'John Doe'}),response.user.reload()})
        .catch(error => Alert.alert('', error.message));
console.log(firebase.auth().currentUser.displayName);

使用此代码,它首先返回null,但是当我重新加载应用程序时,它返回“ John Doe”,我该如何做而无需重新加载应用程序。

1 个答案:

答案 0 :(得分:1)

更新配置文件后,在用户对象上调用reload()。请注意,它会返回一个承诺以指示完成的时间。