쿠키, localStorage 또는 sessionStorage?
쿠키
로컬 스토리지
세션 저장소
sessionStorage는 localStorage와 유사합니다. 유일한 차이점은 데이터의 지속성입니다. sessionStorage의 경우 사용자가 탭이나 창을 닫는 등 도메인을 떠나면 sessionStorage가 비워집니다.
localStorage 및 sessionStorage를 사용하는 방법은 무엇입니까?
localStorage와 sessionStorage 모두 키-값 쌍을 사용하며 구문은 유사합니다. 다음은 그 예입니다.
통사론
//To store the data:
localStorage.setItem(“key”,”value”);
//To retrieve the data:
localStorage.getItem(“key”);
//To update the data (the same as to store the data):
localStorage.setItem(“key”,”value”);
//To remove one entry:
localStorage.removeItem(“key”);
//To clear all the data:
localStorage.clear();
Reference
이 문제에 관하여(쿠키, localStorage 또는 sessionStorage?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mingt/cookie-localstorage-or-sessionstorage-4lp2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)