我刚开始使用AngularJS,我遇到了一个关于Firebase身份验证的奇怪问题。我有一个非常简单的主体,显示当前用户状态(登录,true或false)和signIn和signOut选项。
第一次单击“登录”按钮时,没有任何反应。当我再次单击它时,登录状态会发生变化,ng-show和ng-hide div会切换。
点击退出时会出现同样的问题。
为什么只在第二次点击后才会发生?
的index.html:
<div class="container" ng-controller="userCtrl">
<h1>User logged in: {{loggedIn}}</h1>
<div ng-hide="loggedIn">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" name="email" ng-model="user.email" />
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" name="password" ng-model="user.password" />
</div>
<button type="button" class="btn btn-lg btn-success" ng-click="signIn()">Sign in</button>
</div>
<div ng-show="loggedIn"><button type="button" class="btn btn-lg btn-danger" ng-click="signOut()">Sign out</button></div>
</div>
控制器:
var myApp = angular.module("tijdlozespelApp", ["firebase"]);
myApp.controller("userCtrl", function ($scope, $firebaseObject) {
$scope.loggedIn = false;
$scope.signIn = function() {
var email = $scope.user.email;
var password = $scope.user.password;
firebase.auth().signInWithEmailAndPassword(email, password).then(function(user) {
$scope.loggedIn = true;
}).catch(function(error) {
$scope.loggedIn = false;
});
}
$scope.signOut = function() {
firebase.auth().signOut().then(function() {
$scope.loggedIn = false;
});
}
});
答案 0 :(得分:2)
使用$ scope。$ apply(function(){...})在使用异步处理程序时更新范围数据。 Angular在识别异步操作的范围更改方面存在问题。
{{1}}