Angular $cookies 不持久

Angular $cookies not persisting

我正在使用 angular $resource 访问 API。在这种特殊情况下,使用自定义登录操作,以便登录用户。

为了在身份验证后保存 API 提供的令牌,我将拦截器附加到自定义登录操作,它只是通过 $cookies 将令牌保存到 cookie。

我正在使用拦截器,因为我需要从应用程序的其他部分保存和更新该 cookie。

问题是 cookie 似乎不会持续存在。

如果我在保存后检查该值,我可以确认它在那里,但是一旦我的 $location 发生变化(比如在登录后呈现主页时),cookie 就会消失。

有什么想法吗?

谢谢,D.

这是我的登录服务,它使用自定义登录操作和拦截器

(function() {
    'use strict';

    //Login Service
    // Authenticates a user
    angular
    .module('console')
    .factory('LoginService', LoginService);    
        LoginService.$inject = ['$resource', 'Config', 'UserInfoInterceptor'];

            function LoginService($resource, Config, UserInfoInterceptor) {

                return $resource(Config.api_url + '/auth/', {},
                    {
                        login: {
                        method: 'POST',
                        url: Config.api_url + '/auth/login',
                        data: {type: "passwd"},
                        interceptor: UserInfoInterceptor,
                        headers: {
                        "accept": "application/json",
                        "content-Type": "application/json;odata=verbose"
                    }
                }
            });
    }
})();

这里是拦截器(那个console.log那里,实际上写了cookie值),但是它在去其他位置后就丢失了。

(function() {
  'use strict';

  angular
    .module('console')
    .factory('UserInfoInterceptor', UserInfoInterceptor);
    UserInfoInterceptor.$inject = ['$resource', 'Config', '$q', '$location', '$cookies'];


    function UserInfoInterceptor($resource, Config, $q, $location, $cookies) {    

        return {

                // Save the received token 
                'response': function (response) {

                    var now = new Date();
                    // this will set the expiration to 30 days
                    var exp = new Date(now.getFullYear(), now.getMonth()+1, now.getDate());

                    // Set the cookie
                    $cookies.put('token', response.data.token, {expires: exp});

                    //This actually works!!
                    console.log($cookies.get('token'));

                    return response;
                },

                // Whatever is the failure, throw the user to the login page
                'responseError': function (response) {
                    if (response.status === 401 || response.status === 403) {
                        $location.path('/login');
                    }
                    return $q.reject(response);
                }
            };    
    }

这为时已晚,但我认为此修复程序也可能对其他人有所帮助。

我尝试在 $cookiesProvider 中设置 cookie 路径,如下所示,

xxApp.config(['$cookiesProvider', function ($cookiesProvider) {
     $cookiesProvider.defaults.path = '/'; 
}]);