Local Storage 和 Session Storage 的區(qū)別在于生命周期和適用場(chǎng)景。1. Local Storage 持久化存儲(chǔ),數(shù)據(jù)長期有效,適合保存用戶偏好、登錄狀態(tài)等信息,同源頁面共享,容量約 5MB;2. Session Storage 僅在當(dāng)前會(huì)話期間有效,關(guān)閉標(biāo)簽頁后數(shù)據(jù)清除,適合臨時(shí)狀態(tài)如表單進(jìn)度保存,各標(biāo)簽頁互不影響。兩者均以鍵值對(duì)操作,API 相似,但敏感數(shù)據(jù)不應(yīng)存放其中。選擇時(shí)根據(jù)是否需要跨頁面或長期使用決定:需長期跨頁面使用選 Local Storage,臨時(shí)狀態(tài)則用 Session Storage。
瀏覽器里的 Local Storage 和 Session Storage 是前端常用的存儲(chǔ)方式,簡(jiǎn)單來說,它們都能在用戶瀏覽網(wǎng)頁時(shí)把數(shù)據(jù)“存起來”,但用法和適用場(chǎng)景不同。
Local Storage:持久化存儲(chǔ)
Local Storage 的最大特點(diǎn)是“持久”。只要你不主動(dòng)清除,它里面的數(shù)據(jù)會(huì)一直存在,哪怕關(guān)掉瀏覽器、重啟電腦也不會(huì)丟。
- 適合用來保存長期有效的信息,比如用戶的偏好設(shè)置、登錄狀態(tài)等。
- 存儲(chǔ)容量通常比較大,主流瀏覽器一般支持 5MB 左右。
- 數(shù)據(jù)是綁定在域名下的,也就是說,同一個(gè)網(wǎng)站的不同頁面可以共享這些數(shù)據(jù)。
舉個(gè)例子:你在一個(gè)網(wǎng)站上設(shè)置了深色主題,刷新頁面甚至隔天再打開,這個(gè)設(shè)置還在,這就是 Local Storage 在起作用。
使用方法也很簡(jiǎn)單:
// 存數(shù)據(jù) localStorage.setItem('theme', 'dark'); // 取數(shù)據(jù) let currentTheme = localStorage.getItem('theme'); // 刪數(shù)據(jù) localStorage.removeItem('theme');
Session Storage:臨時(shí)性存儲(chǔ)
Session Storage 跟 Local Storage 很像,但它只在當(dāng)前會(huì)話期間有效。一旦關(guān)閉標(biāo)簽頁或窗口,里面的數(shù)據(jù)就會(huì)被清空。
- 適合保存一次性或臨時(shí)狀態(tài),比如表單填寫的中間數(shù)據(jù)、導(dǎo)航狀態(tài)等。
- 同樣以鍵值對(duì)的形式存儲(chǔ),API 接口也基本一致。
- 每個(gè)標(biāo)簽頁之間互不影響,即使訪問的是同一個(gè)頁面,它們的 session storage 也是獨(dú)立的。
比如你在某個(gè)網(wǎng)頁填了一個(gè)很長的表單,中途刷新頁面沒關(guān)系,但如果關(guān)閉了這個(gè)標(biāo)簽頁,內(nèi)容就沒了。
操作方式類似:
// 存數(shù)據(jù) sessionStorage.setItem('formProgress', 'half'); // 取數(shù)據(jù) let progress = sessionStorage.getItem('formProgress'); // 刪數(shù)據(jù) sessionStorage.removeItem('formProgress');
兩者的區(qū)別與選擇建議
特性 | Local Storage | Session Storage |
---|---|---|
生命周期 | 永久(除非手動(dòng)清除) | 當(dāng)前會(huì)話期間 |
關(guān)閉頁面是否保留 | 是 | 否 |
是否共享數(shù)據(jù) | 同源頁面共享 | 同源頁面不共享 |
容量限制 | 一般 5MB 左右 | 類似 Local Storage |
選擇的時(shí)候可以這樣考慮:
- 如果數(shù)據(jù)需要跨多個(gè)頁面、多個(gè)時(shí)間點(diǎn)使用 → 用 Local Storage
- 如果只是臨時(shí)狀態(tài)、不想污染長期數(shù)據(jù) → 用 Session Storage
不過要注意安全問題,這兩個(gè)存儲(chǔ)都運(yùn)行在客戶端,不適合放敏感信息(比如密碼、token),否則容易被腳本讀取,造成安全隱患。
基本上就這些。兩種存儲(chǔ)機(jī)制各有用途,理解清楚它們的區(qū)別和適用場(chǎng)景,能幫你更好地管理前端的狀態(tài)和數(shù)據(jù)。
The above is the detailed content of What is local storage and session storage. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

ToimplementdarkmodeinCSSeffectively,useCSSvariablesforthemecolors,detectsystempreferenceswithprefers-color-scheme,addamanualtogglebutton,andhandleimagesandbackgroundsthoughtfully.1.DefineCSSvariablesforlightanddarkthemestomanagecolorsefficiently.2.Us

The topic differencebetweenem, Rem, PX, andViewportunits (VH, VW) LiesintheirreFerencepoint: PXISFixedandbasedonpixelvalues, emissrelative EtothefontsizeFheelementoritsparent, Remisrelelatotherootfontsize, AndVH/VwarebaseDontheviewporttimensions.1.PXoffersprecis

CSSHoudini is a set of APIs that allow developers to directly manipulate and extend the browser's style processing flow through JavaScript. 1. PaintWorklet controls element drawing; 2. LayoutWorklet custom layout logic; 3. AnimationWorklet implements high-performance animation; 4. Parser&TypedOM efficiently operates CSS properties; 5. Properties&ValuesAPI registers custom properties; 6. FontMetricsAPI obtains font information. It allows developers to expand CSS in unprecedented ways, achieve effects such as wave backgrounds, and have good performance and flexibility

ReactivitytransforminVue3aimedtosimplifyhandlingreactivedatabyautomaticallytrackingandmanagingreactivitywithoutrequiringmanualref()or.valueusage.Itsoughttoreduceboilerplateandimprovecodereadabilitybytreatingvariableslikeletandconstasautomaticallyreac

Choosing the correct display value in CSS is crucial because it controls the behavior of elements in the layout. 1.inline: Make elements flow like text, without occupying a single line, and cannot directly set width and height, suitable for elements in text, such as; 2.block: Make elements exclusively occupy one line and occupy all width, can set width and height and inner and outer margins, suitable for structured elements, such as; 3.inline-block: has both block characteristics and inline layout, can set size but still display in the same line, suitable for horizontal layouts that require consistent spacing; 4.flex: Modern layout mode, suitable for containers, easy to achieve alignment and distribution through justify-content, align-items and other attributes, yes

CSSgradientsenhancebackgroundswithdepthandvisualappeal.1.Startwithlineargradientsforsmoothcolortransitionsalongaline,specifyingdirectionandcolorstops.2.Useradialgradientsforcirculareffects,adjustingshapeandcenterposition.3.Layermultiplegradientstocre

InternationalizationandlocalizationinVueappsareprimarilyhandledusingtheVueI18nplugin.1.Installvue-i18nvianpmoryarn.2.CreatelocaleJSONfiles(e.g.,en.json,es.json)fortranslationmessages.3.Setupthei18ninstanceinmain.jswithlocaleconfigurationandmessagefil

In Vue, provide and inject are features for directly passing data across hierarchical components. The parent component provides data or methods through provide, and descendant components directly inject and use these data or methods through inject, without passing props layer by layer; 2. It is suitable for avoiding "propdrilling", such as passing global or shared data such as topics, user status, API services, etc.; 3. Note when using: non-responsive original values ??must be wrapped into responsive objects to achieve responsive updates, and should not be abused to avoid affecting maintainability.
