轻量级JS Cookie插件js-cookie的使用方法


Posted in Javascript onMarch 22, 2018

Cookie是网站设计者放置在客户端的小文本文件,一般后台语言使用的比较多,可以实现用户个性化的一些需求。js-cookie插件是一个JS操作cookie的插件,源文件只有3.34 KB,非常轻量级。js-cookie也支持npm和Bower安装和管理。下面看看js-cookie的具体用法。

A simple, lightweight JavaScript API for handling cookies

Works in all browsers
Accepts any character
Heavily tested
No dependency
Unobtrusive JSON support
Supports AMD/CommonJS
RFC 6265 compliant
Useful Wiki
Enable custom encoding/decoding
~900 bytes gzipped!

引用方法:

1、引入js-cookie.js

1.直接饮用cdn:<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>

2.本地下载下来后:<script src="/path/to/js.cookie.js"></script>

3.模块化开发时: import Cookies from 'js-cookie'

2、js-cookie.js常用的API和方法

a、设置cookie

Cookies.set('name', 'value', { expires: 7, path: '' });//7天过期

Cookies.set('name', { foo: 'bar' });//设置一个json

b、读取cookie

Cookies.get('name');//获取cookie

Cookies.get(); #读取所有的cookie

c、删除cookie

Cookies.remove('name'); #删除cookie时必须是同一个路径。

下面是国外的介绍

Basic Usage

Create a cookie, valid across the entire site:

Cookies.set('name', 'value');

Create a cookie that expires 7 days from now, valid across the entire site:

Cookies.set('name', 'value', { expires: 7 });

Create an expiring cookie, valid to the path of the current page:

Cookies.set('name', 'value', { expires: 7, path: '' });

Read cookie:

Cookies.get('name'); // => 'value'
Cookies.get('nothing'); // => undefined

Read all visible cookies:

Cookies.get(); // => { name: 'value' }

Delete cookie:

Cookies.remove('name');

Delete a cookie valid to the path of the current page:

Cookies.set('name', 'value', { path: '' });
Cookies.remove('name'); // fail!
Cookies.remove('name', { path: '' }); // removed!

IMPORTANT! When deleting a cookie, you must pass the exact same path and domain attributes that were used to set the cookie, unless you're relying on the default attributes.

Note: Removing a nonexistent cookie does not raise any exception nor return any value.

Namespace conflicts

If there is any danger of a conflict with the namespace Cookies, the noConflict method will allow you to define a new namespace and preserve the original one. This is especially useful when running the script on third party sites e.g. as part of a widget or SDK.

// Assign the js-cookie api to a different variable and restore the original "window.Cookies"

var Cookies2 = Cookies.noConflict();
Cookies2.set('name', 'value');

Note: The .noConflict method is not necessary when using AMD or CommonJS, thus it is not exposed in those environments.

JSON

js-cookie provides unobtrusive JSON storage for cookies.

When creating a cookie you can pass an Array or Object Literal instead of a string in the value. If you do so, js-cookie will store the string representation of the object according to JSON.stringify:

Cookies.set('name', { foo: 'bar' });

When reading a cookie with the default Cookies.get api, you receive the string representation stored in the cookie:

Cookies.get('name'); // => '{"foo":"bar"}'
Cookies.get(); // => { name: '{"foo":"bar"}' }

When reading a cookie with the Cookies.getJSON api, you receive the parsed representation of the string stored in the cookie according to JSON.parse:

Cookies.getJSON('name'); // => { foo: 'bar' }
Cookies.getJSON(); // => { name: { foo: 'bar' } }

Note: To support IE6-7 (and IE 8 compatibility mode) you need to include the JSON-js polyfill: https://github.com/douglascrockford/JSON-js

更多的可以参考官方说明:

https://github.com/js-cookie/js-cookie

https://www.npmjs.com/package/js-cookie

Javascript 相关文章推荐
javascript判断用户浏览器插件安装情况的代码
Jan 01 Javascript
简介JavaScript中的unshift()方法的使用
Jun 09 Javascript
通用无限极下拉菜单的实现代码
May 31 Javascript
jQuery实现简单倒计时功能的方法
Jul 04 Javascript
原生js获取iframe中dom元素--父子页面相互获取对方dom元素的方法
Aug 05 Javascript
正则 js分转元带千分符号详解
Mar 08 Javascript
Bootstrap Table使用整理(二)
Jun 09 Javascript
JavaScript实现一个带AI的井字棋游戏源码
May 21 Javascript
Vue路由钩子之afterEach beforeEach的区别详解
Jul 15 Javascript
取消Bootstrap的dropdown-menu点击默认关闭事件方法
Aug 10 Javascript
微信分享invalid signature签名错误踩过的坑
Apr 11 Javascript
ES6 Generator基本使用方法示例
Jun 06 Javascript
浅谈Webpack 持久化缓存实践
Mar 22 #Javascript
深入浅析Vue.js中 computed和methods不同机制
Mar 22 #Javascript
Java设计中的Builder模式的介绍
Mar 22 #Javascript
使用vue-route 的 beforeEach 实现导航守卫(路由跳转前验证登录)功能
Mar 22 #Javascript
收集前端面试题之url、href、src
Mar 22 #Javascript
vue 的keep-alive缓存功能的实现
Mar 22 #Javascript
bootstrap中selectpicker下拉框使用方法实例
Mar 22 #Javascript
You might like
php实现快速排序法函数代码
2012/08/27 PHP
用php来改写404错误页让你的页面更友好
2013/01/24 PHP
php防止sql注入简单分析
2015/03/18 PHP
PHP页面静态化――纯静态与伪静态用法详解
2020/06/05 PHP
HR vs ForZe BO3 第二场 2.13
2021/03/10 DOTA
最简单的js图片切换效果实现代码
2011/09/24 Javascript
js 获取后台的字段 改变 checkbox的被选中的状态 代码
2013/06/05 Javascript
javascript运动效果实例总结(放大缩小、滑动淡入、滚动)
2016/01/08 Javascript
js对象浅拷贝和深拷贝详解
2016/09/05 Javascript
微信小程序 实现拖拽事件监听实例详解
2016/11/16 Javascript
详解微信第三方小程序代开发
2017/06/23 Javascript
Nodejs模块载入运行原理
2018/02/23 NodeJs
Vue列表渲染的示例代码
2018/11/01 Javascript
RxJS的入门指引和初步应用
2019/06/15 Javascript
koa2 数据api中间件设计模型的实现方法
2020/07/13 Javascript
[01:16:28]DOTA2-DPC中国联赛 正赛 iG vs Magma BO3 第二场 2月23日
2021/03/11 DOTA
Python中运算符&quot;==&quot;和&quot;is&quot;的详解
2016/10/08 Python
Python实现k-means算法
2018/02/23 Python
Python 列表去重去除空字符的例子
2019/07/20 Python
Python3运算符常见用法分析
2020/02/14 Python
详解tf.device()指定tensorflow运行的GPU或CPU设备实现
2021/02/20 Python
lululemon美国官网:瑜伽服+跑步装备
2018/11/16 全球购物
STAUD官方网站:洛杉矶独有的闲适风格
2019/04/11 全球购物
乌克兰机票、铁路和巴士票、酒店搜索、保险:Tickets.ua
2020/01/11 全球购物
介绍一下write命令
2014/08/10 面试题
火锅店创业计划书范文
2014/02/02 职场文书
《穷人》教学反思
2014/04/08 职场文书
就业协议书的作用
2014/04/11 职场文书
逃课检讨书范文
2015/05/06 职场文书
2015年依法治校工作总结
2015/07/27 职场文书
2015国庆节放假通知范文
2015/07/30 职场文书
2016优秀青年志愿者事迹材料
2016/02/25 职场文书
经销商会议开幕词
2016/03/04 职场文书
2019年汽车租赁合同范本!
2019/08/12 职场文书
Redis集群的关闭与重启操作
2021/07/07 Redis
Python实现批量自动整理文件
2022/03/16 Python