首頁  >  文章  >  web前端  >  一个简单的JavaScript数据缓存系统实现代码_javascript技巧

一个简单的JavaScript数据缓存系统实现代码_javascript技巧

WBOY
WBOY原創
2016-05-16 18:17:541030瀏覽
复制代码 代码如下:

var DataCache = function(){
if(!(this instanceof DataCache)){
return new DataCache();
}
this.id = 0;
this.caches = {};
};
DataCache.prototype = {
add : function(val){
val = val || null;
key = "dc_" + this.id;

this.caches[key] = val;
return key;
},
remove : function(key){
delete this.caches[key];
},
get : function(key){
return this.caches[key];
},
set : function(key,val){
this.caches[key] = val;
}
};
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn