本地存储localstorage

Posted 大圣回来了

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地存储localstorage相关的知识,希望对你有一定的参考价值。

小小插件,封装了一个存取删

<script type="text/javascript">
/*
*getItem(name)
*
*setItem(name,value)
*
*remove(name)
* */
var optionStorage = {
	getObject:function(name){
		if(name){
			return JSON.parse(locaStorage.getItem(name));
		}else{
			return null;
		}
	},
	getItem:function(name){
		if(name){
			return JSON.parse(locaStorage.getItem(name));
		}else{
			return null;
		}
	},
	setItem:function(name,value){
		if(name){
			return JSON.parse(locaStorage.getItem(name,value));
		}
	},
	setObject:function(name,value){
		if(name){
			var options = this.getObject(name)||{};
			for (var tempName in value) {
				options[tempName] = value[tempName];
			}
			locaStorage.steItem(name,JSON.stringifg(options));
		}
	},
	remove:function(name){
		if(name){
			localStorage.removeItem(name);
		}
	}

}
</script>

  

以上是关于本地存储localstorage的主要内容,如果未能解决你的问题,请参考以下文章

vuex本地存储

localStorage本地存储的用法

localStorage本地存储的简单使用

localstorage本地存储的简单使用

LocalStorage本地存储

本地存储 localStorage