2

我在 angular-js 应用程序中使用angular-http-auth进行身份验证。

这是登录控制器内的登录功能:

$scope.login = function() {
    var credentials = Base64.encode($scope.username + ':' + $scope.password);
    var config = { headers: { 'Authorization': 'Basic ' + credentials } };          
    $http.get('url/to/json/user', config)
        .success(function() {
            $http.defaults.headers.common['Authorization'] = 'Basic ' + credentials;
            authService.loginConfirmed();
            console.log('login success');
        })
        .error(function() {
            console.log('login failed');
    });
}

(base64 是来自这里的加密服务)

问题:如果用户已经登录并且他打开了一个新标签,或者如果他重新加载页面,他必须再次登录。

如果用户重新加载页面或来自外部链接,如何避免这种情况并保持会话打开?

4

1 回答 1

3

您可以使用 cookie 或 html5 数据存储来保存凭证或带有凭证的 base64 字符串。然后,您可以从那里加载它们并将它们解析为 $http.defaults.headers.common['Authorization'] = 'Basic' + credentials;

希望能帮助到你。

于 2013-09-29T10:09:51.363 回答