學習封裝storage

2021-10-05 02:10:47 字數 619 閱讀 4845

學習採用靜態方法封裝localstorage。

類相當於例項的原型,所有在類中定義的方法,都會被例項繼承。如果在乙個方法前,加上static關鍵字,就表示該方法不會被例項繼承,而是直接通過類來呼叫,這就稱為「靜態方法」

class

storage

window.localstorage.

setitem

(key,value)

}static

get(key)

catch

(err)}

static

remove

(key)

static

clear()

}

呼叫方法:如果呼叫類中的某一方法,例如get則為

storage.

get(key)

父類的靜態方法可以被子類繼承。

class

getstorage

extends

storage

getstorage.

get(key)

這裡的getstorage.get(key)也是可以取到值。

Vue 前端 Storage的封裝

前言 storage 是類似cookie 的東西 在vue專案的src 資料夾下新建storage index.js 檔案 index.js storage封裝 storage key 可以是任意值 const storage key mall export default else 獲取某乙個模組...

封裝存 取storage工具方法

儲存localstorage export const setstorage name,content window.localstorage.setitem name,content 獲取localstorage 若存的是非字串則取出來的是字串,記得json.parse還原一下 export co...

工作工具之 函式封裝 storage篇

storage 類的封裝class storagefn cookie 設定cookie setcookie name,value,day else 獲取cookie getcookie name return 刪除cookie removecookie name localstorage 設定loc...