ホームページ >ウェブフロントエンド >jsチュートリアル >シンプルな JavaScript データ キャッシュ システムの実装 code_javascript スキル

シンプルな JavaScript データ キャッシュ システムの実装 code_javascript スキル

WBOY
WBOYオリジナル
2016-05-16 18:17:541069ブラウズ
复制代码代码如下:

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[キー] = val;
リターンキー;
},
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 までご連絡ください。