firebase注销需要一些时间来执行操作

时间:2017-01-21 11:21:13

标签: firebase react-native firebase-authentication

我正在构建react native app,其中身份验证过程基于firebase 我现在面临的问题是,当我试图从firebase退出时,

以下是代码:

firebase.auth().signOut().then(function() {
    console.log('STEP 1: Signed Out');
    realm.write(() => {       
           realm.create('userAuthentication', {id:1, userid: '',   username: '', password: ''}, true);
            });

            userAuth = realm.objects('userAuthentication');
            console.log( "STEP 2:" + JSON.stringify(userAuth) );
            this.goHomeRedirect();

        }, function(error) {
          console.error('Sign Out Error', error);
        }); 

userAuth = realm.objects('userAuthentication');
console.log( "STEP 3 :" + JSON.stringify(userAuth) );

它提供输出:

第1步

第3步

第2步

如果有人遇到过firebase的这类问题?请帮助我解决这个问题。

0 个答案:

没有答案