我正在尝试从"我的应用程序"注销用户,但我从控制台收到此消息。
Possible Unhandled Promise Rejection (id: 1):
TypeError: undefined is not an object (evaluating '_auth.firebase.auth.currentUser.signOut')
以下文档(https://invertase.io/oss/react-native-firebase/v6/auth/reference/module#signOut(我做了这样的函数
async function LogoutUser() {
firebase.auth.currentUser.signOut();
}
但用户帐户没有任何反应。拜托,谁能帮我?
signOut
是身份验证的函数。
firebase.auth().signOut().then(function(){
console.log('Signed Out');
},function(error){
});
async function LogoutUser() {
**await** firebase.auth.currentUser.signOut();
}
不要忘记使用 await
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await