수색…


angularjs를 사용한 서비스를 통한 세션 저장 처리

세션 저장 서비스 :

키를 기반으로 저장된 세션 데이터를 저장하고 반환하는 일반적인 팩토리 서비스입니다.

 'use strict';

/**
 * @ngdoc factory
 * @name app.factory:storageService
 * @description This function will communicate with HTML5 sessionStorage via Factory Service.
 */

app.factory('storageService', ['$rootScope', function($rootScope) {

    return {
        get: function(key) {
            return sessionStorage.getItem(key);
        },
        save: function(key, data) {
            sessionStorage.setItem(key, data);
        }
    };
}]);

컨트롤러에서 :

컨트롤러에 storageService 종속성을 주입하여 세션 저장소에서 데이터를 설정하고 가져옵니다.

app.controller('myCtrl',['storageService',function(storageService) {

  // Save session data to storageService
  storageService.save('key', 'value');

  // Get saved session data from storageService
  var sessionData = storageService.get('key');

});


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow