Vue 將參數儲存在用戶端(sessionStorage、localStorage)

shaung08
Jul 28, 2021

--

seession storage 將參數儲存在用戶端

1. 在瀏覽器關掉之後參數就會被清除

setItem儲存參數

var name = "qct"
seessionStorage.setItem("userName", name)

getItem取得參數

sessionStorage.getItem("userName") // qct

removeItem 移除參數

sessionStorage.removeItem("userName")

local storage 將參數儲存在用戶端

  1. 參數不會過期除非手動清除
  2. 預設大小5MB

setItem儲存參數

var name = "qct"
localStorage.setItem("userName", name)

getItem取得參數

localStorage.getItem("userName") // qct

removeItem 移除參數

localStorage.removeItem("userName")

.clear() 移除全部參數

localStorage.clear()

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

shaung08
shaung08

Written by shaung08

Software Engineer: Major in AI and backend field Hackmd blog: https://hackmd.io/@shaung08 GitHub: https://github.com/shaung08 Contact Email: a2369875@gmail.com

No responses yet

Write a response