使用react-native制作一个简单的firebase auth应用。注册/登录工作正常,但是我无法退出以正常工作。

loginUser = (email,password) => {
    try{
      firebase.auth().signInWithEmailAndPassword(email, password).then(function(user){
        console.log(user)
      })
    }
    catch(error){
      console.log(error.toString())

    }
  }

  signOutUser = () => firebase.auth.signOut();

退出按钮很简单,因为:
<Button style={styles.button}
            full
            rounded
            onPress={() => this.signOutUser()}
>

最佳答案

您用于注销用户的函数称为signOutUser,但是在您按下按钮时调用名为deleteAccount的函数。
尝试:

onPress={() => this.signOutUser()}

另外,您可能需要将signOutUser函数更改为:
firebase.auth().signOut().then(function() {
  // Sign-out successful.
}).catch(function(error) {
  // An error happened.
});

09-25 20:46