您好,登錄后才能下訂單哦!
本篇內容主要講解“js的cookie怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“js的cookie怎么使用”吧!
根據README
,我們可以看到js-cookie
的使用方式:
// 設置 Cookies.set('name', 'value'); // 設置過期時間 Cookies.set('name', 'value', { expires: 7 }) // 獲取 Cookies.get('name') // => 'value' // 獲取所有 Cookies.get() // => { name: 'value' } // 獲取指定域名下 Cookies.get('foo', { domain: 'sub.example.com' }) // 刪除 Cookies.remove('name')
還有很多其他用和配置說明,大家可以自己去看看。
js-cookie
的源碼并不多,src
目錄下的api.mjs
就是我們要分析的源碼,只有一百行左右。
/* eslint-disable no-var */ import assign from './assign.mjs' import defaultConverter from './converter.mjs' function init (converter, defaultAttributes) { function set (name, value, attributes) { if (typeof document === 'undefined') { return } attributes = assign({}, defaultAttributes, attributes) if (typeof attributes.expires === 'number') { attributes.expires = new Date(Date.now() + attributes.expires * 864e5) } if (attributes.expires) { attributes.expires = attributes.expires.toUTCString() } name = encodeURIComponent(name) .replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent) .replace(/[()]/g, escape) var stringifiedAttributes = '' for (var attributeName in attributes) { if (!attributes[attributeName]) { continue } stringifiedAttributes += '; ' + attributeName if (attributes[attributeName] === true) { continue } // Considers RFC 6265 section 5.2: // ... // 3. If the remaining unparsed-attributes contains a %x3B (";") // character: // Consume the characters of the unparsed-attributes up to, // not including, the first %x3B (";") character. // ... stringifiedAttributes += '=' + attributes[attributeName].split(';')[0] } return (document.cookie = name + '=' + converter.write(value, name) + stringifiedAttributes) } function get (name) { if (typeof document === 'undefined' || (arguments.length && !name)) { return } // To prevent the for loop in the first place assign an empty array // in case there are no cookies at all. var cookies = document.cookie ? document.cookie.split('; ') : [] var jar = {} for (var i = 0; i < cookies.length; i++) { var parts = cookies[i].split('=') var value = parts.slice(1).join('=') try { var found = decodeURIComponent(parts[0]) jar[found] = converter.read(value, found) if (name === found) { break } } catch (e) {} } return name ? jar[name] : jar } return Object.create( { set: set, get: get, remove: function (name, attributes) { set( name, '', assign({}, attributes, { expires: -1 }) ) }, withAttributes: function (attributes) { return init(this.converter, assign({}, this.attributes, attributes)) }, withConverter: function (converter) { return init(assign({}, this.converter, converter), this.attributes) } }, { attributes: { value: Object.freeze(defaultAttributes) }, converter: { value: Object.freeze(converter) } } ) } export default init(defaultConverter, { path: '/' }) /* eslint-enable no-var */
js-cookie
的源碼并不多,我們先來看看導出的是什么:
export default init(defaultConverter, { path: '/' })
這里是直接導出了init
函數的返回值,我們來看看init
函數的返回值:
function init (converter, defaultAttributes) { // ... return Object.create( { set: set, get: get, remove: function (name, attributes) { set( name, '', assign({}, attributes, { expires: -1 }) ) }, withAttributes: function (attributes) { return init(this.converter, assign({}, this.attributes, attributes)) }, withConverter: function (converter) { return init(assign({}, this.converter, converter), this.attributes) } }, { attributes: { value: Object.freeze(defaultAttributes) }, converter: { value: Object.freeze(converter) } } ) }
這里是使用Object.create
創建了一個對象,這個對象有set
、get
、remove
、withAttributes
、withConverter
這幾個方法,這幾個方法都是在init
函數內部定義的,我們來看看這幾個方法的實現:
function set(name, value, attributes) { if (typeof document === 'undefined') { return } attributes = assign({}, defaultAttributes, attributes) if (typeof attributes.expires === 'number') { attributes.expires = new Date(Date.now() + attributes.expires * 864e5) } if (attributes.expires) { attributes.expires = attributes.expires.toUTCString() } name = encodeURIComponent(name) .replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent) .replace(/[()]/g, escape) var stringifiedAttributes = '' for (var attributeName in attributes) { if (!attributes[attributeName]) { continue } stringifiedAttributes += '; ' + attributeName if (attributes[attributeName] === true) { continue } // Considers RFC 6265 section 5.2: // ... // 3. If the remaining unparsed-attributes contains a %x3B (";") // character: // Consume the characters of the unparsed-attributes up to, // not including, the first %x3B (";") character. // ... stringifiedAttributes += '=' + attributes[attributeName].split(';')[0] } return (document.cookie = name + '=' + converter.write(value, name) + stringifiedAttributes) }
一行一行來看:
if (typeof document === 'undefined') { return }
首先判斷是否有document
對象,如果沒有則直接返回,這說明js-cookie
只能在瀏覽器環境下使用。
attributes = assign({}, defaultAttributes, attributes)
然后合并配置項,將defaultAttributes
和傳入的attributes
合并,這里的assign
大家直接理解為Object.assign
就好了。
if (typeof attributes.expires === 'number') { attributes.expires = new Date(Date.now() + attributes.expires * 864e5) } if (attributes.expires) { attributes.expires = attributes.expires.toUTCString() }
然后判斷expires
是否是一個數字,如果是數字則將其轉換為一個Date
對象;
這里的864e5
是一個常量,結尾的e5
代表后面加5個0,也就是86400000
表示一天的毫秒數。
然后判斷expires
是否存在,如果存在則將其轉換為UTC
時間。
name = encodeURIComponent(name) .replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent) .replace(/[()]/g, escape)
這里對name
進行了編碼,然后將name
中的%
、(
、)
進行了轉義。
escape
是一個內置函數,它的作用是將一個字符串轉換為UTF-8
編碼的字符串,這里的escape
是將(
、)
轉換為%28
、%29
。
參考:escape()
var stringifiedAttributes = '' for (var attributeName in attributes) { if (!attributes[attributeName]) { continue } stringifiedAttributes += '; ' + attributeName if (attributes[attributeName] === true) { continue } // Considers RFC 6265 section 5.2: // ... // 3. If the remaining unparsed-attributes contains a %x3B (";") // character: // Consume the characters of the unparsed-attributes up to, // not including, the first %x3B (";") character. // ... stringifiedAttributes += '=' + attributes[attributeName].split(';')[0] }
這里是將attributes
轉換為字符串,這里的stringifiedAttributes
是一個字符串,最后的結果是這樣的:
stringifiedAttributes = '; path=/; expires=Wed, 21 Oct 2015 07:28:00 GMT'
最后將name
、value
、stringifiedAttributes
拼接起來,然后賦值給document.cookie
。
function get(name) { if (typeof document === 'undefined' || (arguments.length && !name)) { return } // To prevent the for loop in the first place assign an empty array // in case there are no cookies at all. var cookies = document.cookie ? document.cookie.split('; ') : [] var jar = {} for (var i = 0; i < cookies.length; i++) { var parts = cookies[i].split('=') var value = parts.slice(1).join('=') try { var found = decodeURIComponent(parts[0]) jar[found] = converter.read(value, found) if (name === found) { break } } catch (e) { } } return name ? jar[name] : jar }
get
方法的實現比較簡單,主要是解析document.cookie
,然后將其轉換為一個對象,來逐行解析:
if (typeof document === 'undefined' || (arguments.length && !name)) { return }
對比于set
方法,這里多了一個(arguments.length && !name)
的判斷,這里是防止傳入空字符串的name
。
var cookies = document.cookie ? document.cookie.split('; ') : []
這里是將document.cookie
分割為一個數組,每一項是一個cookie
。
var jar = {} for (var i = 0; i < cookies.length; i++) { var parts = cookies[i].split('=') var value = parts.slice(1).join('=') }
這一步是只要cookie
的name
和value
,其他的一些額外附加信息都不需要。
try { var found = decodeURIComponent(parts[0]) jar[found] = converter.read(value, found) if (name === found) { break } } catch (e) { }
這里是將name
進行了解碼,然后將name
和value
存儲到jar
對象中,如果傳入了name
,則在找到對應的name
后就跳出循環。
return name ? jar[name] : jar
最后返回jar
對象,如果傳入了name
,則返回對應的value
,否則返回整個jar
對象。
這里的核心是converter.read
,這個方法是用來解析value
的,這里的converter
是一個對象,它有兩個方法:
/* eslint-disable no-var */ export default { read: function (value) { if (value[0] === '"') { value = value.slice(1, -1) } return value.replace(/(%[\dA-F]{2})+/gi, decodeURIComponent) }, write: function (value) { return encodeURIComponent(value).replace( /%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g, decodeURIComponent ) } } /* eslint-enable no-var */
read
方法是將value
進行解碼,write
方法是將value
進行編碼。
function remove(name, attributes) { set( name, '', assign({}, attributes, { expires: -1 }) ) }
remove
方法就是使用set
方法將value
設置為空字符串,然后將expires
設置為-1
,這樣就相當于刪除了cookie
。
Object.create({ withAttributes: function (attributes) { return init(assign({}, defaultAttributes, attributes)) }, withConverter: function (converter) { return init(assign({}, defaultConverter, converter)) } })
這兩個方法就是用來設置defaultAttributes
和defaultConverter
的,這兩個對象是用來設置cookie
的默認屬性和默認的converter
。
到此,相信大家對“js的cookie怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。