$ authWithPassword不是AngularFire 2.x中的函数

时间:2016-07-30 03:21:03

标签: javascript angularjs firebase angularfire firebase-authentication

之前我曾看过有关此问题的帖子,但他们已经过时或提供了与我的设置非常相似的解决方案。

基本上,我的控制器中有两个函数:authCtrl.login和authCtrl.register。注册表对Auth。$ createUserWithEmailAndPassword()的调用工作正常,但是登录对Auth。$ authWithPassword()的调用没有,因为我得到了一个" ..是不是一个功能"错误。我的生活不能弄明白这里有什么问题。

这是我的设置:

auth.service.js:

angular.module('angularfireSlackApp')
.factory('Auth', function($firebaseAuth, $firebaseObject){
var auth = $firebaseAuth();

return auth;
});

auth.controller.js:

angular.module('angularfireSlackApp')
.controller('AuthCtrl', function(Auth, $state){
var authCtrl = this;

authCtrl.user = {
  email: '',
  password: ''
};

authCtrl.login = function() {
// Why is this not a function
Auth.$authWithPassword(authCtrl.user)
.then(function (auth){
  $state.go('home');
}, function (error){
  authCtrl.error = error;
});
}

authCtrl.register = function() {
Auth.$createUserWithEmailAndPassword(authCtrl.user.email, authCtrl.user.password)
.then(function (user){
  authCtrl.login();
}, function (error){
  authCtrl.error = error;
});
}

});

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

根据Aaron Saunders使用angularjs和angularfire回答的问题,可能会有更完整的答案:

var auth = $firebaseAuth();

$scope.loginUser = function (email, password) {
        auth.$signInWithEmailAndPassword(email, password).then(function(firebaseUser) {
            console.log("User Logged in successfully with uid: " + firebaseUser.uid);
        }).catch(function(error) {
            console.log("An Authentication error occurred: " + error);
        });
    };