Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

localStorage에 대한 조사 #56

Open
hoyyChoi opened this issue Sep 14, 2022 · 0 comments
Open

localStorage에 대한 조사 #56

hoyyChoi opened this issue Sep 14, 2022 · 0 comments

Comments

@hoyyChoi
Copy link
Member

localStorage에 대한 문서화

  • 현재 도메인의 로컬 저장소에 접근 할 수 있게 한다.
  • 웹브라우저에서 각 도메인에 대해 할당해주는 저장공간으로, 데이터를 영구적으로 보관 가능하다.
  • 데이터 보관 시에는 데이터의 이름과 데이터의 실제 값을 각각 지정한다,
  • 데이터 타입은 문자열 형태만 허용된다.
  • 브라우저를 껐다가 켜거나 페이지를 새로고침해도 해당 페이지에 데이터가 남아있도록 할 수 있다.

localStorage 사용법

localStorage로부터 데이터를 읽거나 쓸 떄에는 메소드를 이용해 접근한다.

  • setItem : 키와 밸류를 전달 받아 저장 (setItem("key","value"))m
  • getItem : 전달받은 키에 해당하는 밸류를 반환 (getItem("key"))
  • removeItem : 전달받은 키에 해당하는 데이터를 삭제 (removeItem("key"))
  • clear() : 모든 데이터 삭제 (clear())
@hoyyChoi hoyyChoi changed the title localStorage에 대한 문서화 localStorage에 대한 조사 Sep 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant