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

Vue3 is used to render content outside the current component DOM structure. 1. It allows you to move elements such as modal boxes, prompt tools to other locations on the page to solve layout problems, z-index hierarchy and accessibility problems; 2. When using it, you need to wrap the target content and specify the target selector, such as; 3. Vue will physically move the corresponding DOM node to the specified position while maintaining responsiveness and event logic; 4. Common application scenarios include modal boxes, notification messages, tooltips and barrier-free content; 5. When using it, you need to ensure that the target element already exists, and pay attention to the style scope and dynamic logic processing. In short, maintaining the logical relationship of component tree through virtual references provides a concise solution for complex UIs.

TomanageCSSandstylinginlargeVueprojectseffectively,adoptscopedstylesbydefault,establishaglobalCSSarchitecture,useconsistentnamingconventions,selectivelyleverageCSS-in-JSorutilitylibraries,enforceconsistencywithlinters,anddocumentdesigntokens.Beginwit

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

Vertical centering content can be implemented in CSS in a variety of ways, the most direct way is to use Flexbox. 1. Use Flexbox: By setting the container to display:flex and in conjunction with align-items:center, vertical centering of child elements can be easily achieved; 2. Combination of absolute positioning and transform: suitable for absolute positioning elements, by setting top and left to 50% and then using translate (-50%,-50%) to achieve centering; 3. CSSGrid: Through display:grid and place-items:center, horizontal and vertical centering can be achieved at the same time. If only vertical centering is required, use align

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

SuspenseinVue3simplifieshandlingasynccomponentsbymanagingloadingstatesandintegratingerrorhandling.1.Itwrapsasynccontentanddisplaysfallbackcontentlikespinnersuntilthecomponentloads.2.YoudefineasynccomponentsusingdefineAsyncComponentandwraptheminaSuspe

InVue,slotsareessentialforbuildingreusableandflexiblecomponents,andtherearethreemaintypes:default,named,andscoped.Defaultslotsallowaparenttopasscontentintoachildcomponentwithnospecificplacement,idealforsingle-sectioncomponentslikecards.Namedslotsenab

Vue provides errorCaptured hooks and global error handlers to deal with application errors. 1. The errorCaptured hook can capture JavaScript errors in the child component tree, including errors in the life cycle hook and rendering function, receive error objects, error components and error location information, and can prevent errors from bubble upward by returning false. 2. Global error handling is configured through app.config.errorHandler, which is used to capture unexpected errors in the entire application, receive error objects, component instances and error type information. It is suitable for rendering functions, life cycle hooks, watcher callbacks and other scenarios, but does not automatically capture errors in event processing or asynchronous operations. 3.
