使用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()}
>
答案 0 :(得分:2)
您用于注销用户的函数称为signOutUser
,但是在您按下按钮时调用名为deleteAccount
的函数。
试试:
onPress={() => this.signOutUser()}
另外,您可能需要将signOutUser函数更改为:
firebase.auth().signOut().then(function() {
// Sign-out successful.
}).catch(function(error) {
// An error happened.
});
答案 1 :(得分:1)
您的函数在代码中被命名为signOutUser
,但是您的HTML试图调用名为deleteAccount
的函数。
如果您有其他deleteAccount
,我们也需要您向我们展示。
答案 2 :(得分:0)
在您的代码中,您有 firebase.auth.signOut()
和 auth
,这里是一个函数,因此它应该是 firebase.auth().signOut()