firebase身份验证状态

时间:2018-04-13 03:12:21

标签: javascript firebase firebase-authentication

我正在使用JS和firebase进行简单的登录/退出,注册网页,所有方法都可以,但方法

_x = ((_mapWidth / _worldCenterSize.X) * (_playerPos.X - _worldCenterPos.X)) * -1
_y = ((_mapHeight / _worldCenterSize.Z) * (_playerPos.Z - _worldCenterPos.Z)) * -1

_mapCharacterArrow.Position = UDim2.new(0.5, _x, 0.5, _y)

它的状态没有改变,并且总是在浏览器控制台中弹出并没有登录消息,所以它可能会出错。 这是页面的js代码

firebase.auth().onAuthStateChanged(function(user) {
    if (user) {
      // User is signed in.
      console.log(user);
    } else {
      // No user is signed in.
      console.log('not logged in');
    }
  });

});

0 个答案:

没有答案