我想更新当前用户的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”,我该如何做而无需重新加载应用程序。