其他分享
首页 > 其他分享> > 1_Cookie、SessionStorage、LocalStorage

1_Cookie、SessionStorage、LocalStorage

作者:互联网

Cookie: 用于存储 web 页面的用户信息。在用户下一次访问该页面时,可以在 cookie 中读取用户访问记录。

Webstorage:

  1. 存储内容大小一般支持5MB左右(不同浏览器可能还不一样)

  2. 浏览器端通过 Window.sessionStorage 和 Window.localStorage 属性来实现本地存储机制。

  3. 相关API:

    1. xxxxxStorage.setItem('key', 'value'); 该方法接受一个键和值作为参数,会把键值对添加到存储中,如果键名存在,则更新其对应的值。

    2. xxxxxStorage.getItem('person');

      该方法接受一个键名作为参数,返回键名对应的值。

    3. xxxxxStorage.removeItem('key');

      该方法接受一个键名作为参数,并把该键名从存储中删除。

    4. xxxxxStorage.clear()

      该方法会清空存储中的所有数据。

  4. 备注:

    1. SessionStorage存储的内容会随着浏览器窗口关闭而消失页面刷新不会消失

    2. LocalStorage存储的内容,需要手动清除才会消失。

    3. xxxxxStorage.getItem(xxx)如果xxx对应的value获取不到,那么getItem的返回值是null。

    4. JSON.parse(null)的结果依然是null。

标签:存储,浏览器,键名,SessionStorage,xxxxxStorage,LocalStorage,getItem,Cookie,null
来源: https://www.cnblogs.com/tybm/p/15970236.html