我正在为我的应用程序使用firebase,每当我点击我得到的注销按钮('评估'this.firebase.unauth')。我的api请求有什么问题?
logout() {
this.firebase.unauth();
}
//this is the api request
onPress() {
Actions.logout();
}
//this is the action method.
答案 0 :(得分:0)
您使用的是import firebase from 'firebase';
吗?在这种情况下,您不需要this
,只需要firebase.unauth();
即可。但是,真的有一种名为unauth()
的方法吗?文档指的是使用:
firebase.auth().signOut().then(function() {
// Sign-out successful.
}).catch(function(error) {
// An error happened.
});