4

全部,

我只是想将用户对象存储在 AngularJS 应用程序的 sessionStorage 中。如果我在 Chrome 或 FF 调试器中逐步执行此操作,则 sessionStorage 永远不会设置。这是我的角度服务代码:

// Authentication/authorization Module
stonewall.authModule = angular.module("authModule", [
    // Module dependencies
    "ngStorage"
    ]);

// Authentication/authorization service tracks the current user
stonewall.authModule.service('authService', function ($localStorage, $sessionStorage) {

    // Initialize current user
    var currentUser = {};
    restoreSession();

    // Declare storage type-this may change if user selects
    // "Keep me signed in"
    var storageType = {};

    // Return the current user object
    this.getCurrentUser = function () {
        return currentUser;
    };
    // Returns whether there is a currently authorized user
    this.userAuth = function() {
        return currentUser.sid != "";
    };
    // Logout function, initializes the user object
    this.logout = function() {
        currentUser = {
            sid: "",
            status: 0,
            pswLastSet: 0,
            id: "",
            sigUID: "",
            sig: ""
        };
        //persistSession();
    };
    // Login
    this.login = function(user, subj) {
        if (user == null) return;
        currentUser = {
            sid: user.Principal.SId,
            status: user.Principal.ControlStatus,
            pswLastSet: new Date(user.Principal.PasswordLastSet),
            id: user.Identity.Id.DN,
            sigUID: user.Identity.Certificates[0].UID,
            sig: stonewall.hash(user.Principal.SId + subj.pswd),
        };
        persistSession();
    };
    // Persist to session storage
    function persistSession() {
        $sessionStorage.currentUser = currentUser;
    };
    // Restore session
    function restoreSession() {
        currentUser = $sessionStorage.currentUser;
        if (currentUser == null) {
            // Initialize to empty user
            currentUser = {
                sid: "",
                status: 0,
                pswLastSet: 0,
                id: "",
                sigUID: "",
                sig: ""
            };
        }
    };
});

而且,这是一个显示我的 FF 调试会话的屏幕截图。您可以看到调用persistSession 后,$sessionStorage 有我的用户。

调试器

但是,如果我切换到 DOM 检查器,sessionStorage 中没有任何项目......

DOM

一如既往地感谢任何帮助。

4

1 回答 1

4

你确定你以正确的方式使用 Angular 的 sessionStorage 吗?会话存储是角度中 $window 对象的属性,所以我不知道您是否制作了自己的服务包装器或类似的东西?无论如何,这是一个代码笔,它显示了我自己使用的另一种方法,而是使用 $window.sessionStorage:http: //codepen.io/chrisenytc/pen/gyGcx

于 2014-06-06T16:51:57.297 回答