我正在使用角度卫星,这是我的代码。
登录.js
MyApp.controller('LoginController', function($scope, $auth, $state, $location) {
$scope.login = function() {
var user = {
email: $scope.email,
password: $scope.password
};
$auth.login(user)
.then(function(response) {
// Redirect user here after a successful log in.
$location.path('/');
console.log("Success!");
})
.catch(function(response) {
// Handle errors here, such as displaying a notification
// for invalid email and/or password.
});
}
});
当我登录时,我确实看到了“成功!” 在控制台中,但我留在同一页面。不仅如此,如果我使用$state.go('dashboard', {}); 它正在工作。
(PS。我阅读了一堆关于 $location 的帖子,但无法提出解决方案)