本地存储localStorage用法详解
一、什么是localstorage?
在html5中,新加入了一个localstorage特性,这个特性主要是用来作为本地存储来使用的,解决了cookie存储空间不足的问题(cookie中每条cookie的存储空间为4k),localstorage中一般浏览器支持的是5m大小,这个在不同的浏览器中localstorage会有所不同。
二、localstorage的优势与局限
localstorage的优势
1、localstorage拓展了cookie的4k限制
2、localstorage会可以将第一次请求的数据直接存储到本地,这个相当于一个5m大小的针对于前端页面的数据库,相比于cookie可以节约带宽,但是这个却是只有在高版本的浏览器中才支持的
localstorage的局限
1、浏览器的大小不统一,并且在ie8以上的ie版本才支持localstorage这个属性
2、目前所有的浏览器中都会把localstorage的值类型限定为string类型,这个在对我们日常比较常见的json对象类型需要一些转换
3、localstorage在浏览器的隐私模式下面是不可读取的
4、localstorage本质上是对字符串的读取,如果存储内容多的话会消耗内存空间,会导致页面变卡
5、localstorage不能被爬虫抓取到
localstorage与sessionstorage的唯一一点区别就是localstorage属于永久性存储,而sessionstorage属于当会话结束的时候,sessionstorage中的键值对会被清空。
三、localstorage的使用
清空localstorage
localstorage.clear() // undefined localstorage //storage {length: 0} 存储数据
存储数据
localstorage.setitem("name","caibin") //存储名字为name值为caibin的变量 localstorage.name = "caibin"; // 等价于上面的命令 localstorage // storage{name: "caibin", length: 1} 读取数据
读取数据
localstorage.getitem("name") //caibin,读取保存在localstorage对象里名为name的变量的值 localstorage.name // "caibin" localstorage.valueof() //读取存储在localstorage上的所有数据 localstorage.key(0) // 读取第一条数据的变量名(键值) //遍历并输出localstorage里存储的名字和值 for(var i=0; i<localstorage.length;i++){ console.log('localstorage里存储的第'+i+'条数据的名字为:'+localstorage.key(i)+',值为:'+localstorage.getitem(localstorage.key(i))); }
删除某个变量
localstorage.removeitem("name"); //undefined localstorage // storage {length: 0} 可以看到之前保存的name变量已经从localstorage里删除了
检查localstorage里是否保存某个变量
// 这些数据都是测试的,是在我当下环境里的,只是demo哦~ localstorage.hasownproperty('name') // true localstorage.hasownproperty('sex') // false
将数组转为本地字符串
var arr = ['aa','bb','cc']; // ["aa","bb","cc"] localstorage.arr = arr //["aa","bb","cc"] localstorage.arr.tolocalestring(); // "aa,bb,cc"
将json存储到localstorage里
var students = { xiaomin: { name: "xiaoming", grade: 1 }, teemo: { name: "teemo", grade: 3 } } students = json.stringify(students); //将json转为字符串存到变量里 console.log(students); localstorage.setitem("students",students);//将变量存到localstorage里 var newstudents = localstorage.getitem("students"); newstudents = json.parse(students); //转为json console.log(newstudents); // 打印出原先对象
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。