我正在学习Angular范围和其他东西。坚持使用身份验证的系统。
$scope.logUserIn = function(){
$http.post('api/user/login', $scope.login).success(function(response){
localStorage.setItem('User-Data', JSON.stringify(response));
$scope.loggedIn=true;
}).error(function(error){
console.log(error);
});
}
}
所以,想要验证响应,因为如果我把一些假的电子邮件或密码响应由服务器等待.....永远。 当我放入一些假信用卡时,错误功能不会触发。