2

Angularjs 版本 1.3.15

我已经在我的页面“A”上使用 $cookieStore.put 设置了一个 cookie,现在希望将用户重定向到新页面“B”以使用该 cookie。我的问题是

如何将用户重定向到以 Angular 定义的已知路由,从而导致整个页面加载,这将读取 cookie 标头并允许我访问我的 cookie?

这是我发现的唯一有效的方法:

testControllers.controller('aController', ['$window', '$routeParams', '$cookieStore',
    function($window, $routeParams, $cookieStore) {
        $cookieStore.put('test', 1);

        if ($routeParams.bounce && $routeParams.bounce != '') {
            $window.location.href = '/#/' + $routeParams.bounce;
            $window.location.reload(true);
        } else {
            $window.location.href = '/#/';
            $window.location.reload(true);
        }
    }
]);

但是,它会导致双页加载并且很糟糕。一定有更好的方法。

提前致谢

编辑:

页面“B”正在使用使用指令的不同控制器,但我正在 Chrome 中查看“资源”选项卡 - 这就是我看到浏览器尚未看到 cookie 的方式。我希望在以下位置查看 cookie 的指令:

testControllers
    .controller('menuDirective', ['$scope', '$cookieStore',
        function($scope, $cookieStore) {
            $scope.loggedin = false;

            if ($cookieStore.get('loggedin')) {
                $scope.loggedin = true;
            }
        }
    ])
    .directive('mymenu', function() {
        return {
            templateUrl: 'app/shared/menu/menuView.html'
        }
    });
4

1 回答 1

1

我通过在我的登录控制器顶部有一个 if 语句来检查 cookie 的存在以及是否存在进行 location.path 更改来解决这个问题。然后在我对登录的 POST 响应中设置登录 cookie 只需执行 window.location.reload(true); 这将触发页面刷新,在浏览器中填充 cookie,并允许点击 if 语句。

于 2015-03-26T12:45:04.743 回答