$scope.logOut = function(){
console.log('clicked');
firebase.auth().signOut().then(function(res){
$state.go('intro');
$rootScope.test = false;
}, function(error) {
// An error happened.
});
}
当我点击退出时,它会运行此功能,您可以看到,跳转到简介页面。但是当我打开go用户个人资料页面时。信息仍然存在,但当前用户为空。