경량급 JS Cookie 플러그 인 js - cookie 사용 방법

5253 단어
Cookie 는 사이트 디자이너 가 클 라 이언 트 에 설치 한 작은 문서 파일 로 보통 배경 언어 를 많이 사용 하여 사용자 의 개성 화 된 수 요 를 실현 할 수 있다.js - cookie 플러그 인 은 JS 에서 쿠키 를 조작 하 는 플러그 인 으로 원본 파일 은 3.34KB 로 매우 경량급 입 니 다.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: < / p > 직접 마 시기
< p > 2. 로 컬 다운로드 후: < script src = "/ path / to / js. cookie. js" / > < / p >
< p > 3. 모듈 화 개발 시: import Cookies from 'js - cookie' < / p >
< p > 2, js - cookie. js 에서 자주 사용 하 는 API 와 방법 < / p >
< p > a, 쿠키 설정 < / p >
< p > Cookies.set('name', 'value', { expires: 7, path: '' }); / / 7 일 만 료 < / p >
< p > Cookies.set('name', { foo: 'bar' }); / / json < / p > 설정
< p > b, 쿠키 읽 기 < / p >
< p > Cookies.get('name'); / / 쿠키 가 져 오기 < / p >
< p > Cookies.get(); \ # 모든 쿠키 읽 기 < / p >
< p > c, 쿠키 삭제 < / p >
< p > Cookies.remove('name'); \ # 쿠키 를 삭제 할 때 같은 경로 여야 합 니 다. < /p>
< p > 다음은 외국 의 소개 < / p > 입 니 다.

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


< p > 더 많은 것 은 공식 설명 을 참고 할 수 있 습 니 다. < / p >

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


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







좋은 웹페이지 즐겨찾기