vue工具類之 Cookie操作

2021-09-10 02:36:21 字數 1135 閱讀 9063

注意:此工具是個雞肋的存在,沒有多大意義。(瀏覽器可以直接操作,類似於localstorage)

* description: 登入頁樣式檔案

* create_time: 2019-01-03

* message: 不接受任何私下吐槽,請當面溝通協調

class cookie {

constructor() {

this.date= new date();

// 存入cookie

set (name, value, day) {

day= day|| 7;

const valuetype = typeof value;

value= (valuetype == 'string')? json.stringify(value):value;

this.date.settime(this.date.gettime() + 24 * 60 * 60 * 1000 * day);

window.document.cookie= name+ '=' + value+ ';path=/;expires=' + this.date.togmtstring();

// 取出cookie

get (name) {

let v = window.document.cookie.match('(^|;) ?' + name+ '=([^;]*)(;|$)');

return v ? v[2] : null

// 刪除cookie

del (name) {

this.date.settime(this.date.gettime() - 1)

let val = this.get(name)

if (val != null) {

document.cookie= name+ '=' + val + ';expires=' + this.date.togmtstring();

export default cookie

用法:const cookie = new cookie();

Cookie工具類的編寫

cookie並不是它的原意 甜餅 的意思,而是乙個儲存在客戶機中的簡單的文字檔案,這個檔案與特定的 web 文件關聯 在一起,儲存了該客戶機訪問這個web 文件時的資訊,當客戶機再次訪問這個 web 文件時這些資訊可供該文件使用,由於 cookie 具有可以儲存在客戶機上的神奇特性,因此它可以幫助我...

MongoDB操作之java工具類

package com.siwill.controller created by panweifu on 2019 5 21.public class mongodbutil public static mongo getmongos catch unknownhostexception e cat...

cookie操作類 加密,獲取,刪除

using system using system.io using system.text using system.diagnostics using system.web.security using system.security using system.security.cryptogr...