AngularJS
セッション記憶域
サーチ…
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