Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107266976
cache.service.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Apr 6, 11:44
Size
738 B
Mime Type
text/x-java
Expires
Tue, Apr 8, 11:44 (2 d)
Engine
blob
Format
Raw Data
Handle
25385937
Attached To
rNIETZSCHEBETAAPP Nietzsche-Beta-App
cache.service.ts
View Options
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class CacheService {
cache = {};
constructor() { }
public getItem(key: string): any {
try {
return JSON.parse(localStorage.getItem(key));
} catch(e) {
try {
return this.cache[key];
} catch(e){
return null;
}
}
}
public removeItem(key: string){
try { delete this.cache[key]; } catch(e){}
try { localStorage.removeItem(key); } catch(e){}
}
public setItem(key: string, data: any){
this.cache[key] = data;
try {
localStorage.setItem(key, JSON.stringify(data));
} catch(e) {
localStorage.clear();
}
}
}
Event Timeline
Log In to Comment