10주차 [Network] Cookie와 Session#68
Open
KJY97 wants to merge 5 commits intono-study-no-future:KJY97from
Open
Conversation
Member
|
브라우저의 localStorage, sessionStorage는 쿠키와 세션 어디에 속하나요? 아니면 별개인가요? |
Author
우선 결론부터 말하자면 WebStorage는 쿠키와 세션과는 다른 별개입니다. 다만, localStorage는 쿠키와 달리 HTTP 요청에서 데이터를 주고 받을 필요가 없습니다. 참고로 localStorage는 사용자가 지우기 전까지는 데이터 영구적이고, SessionStorage는 브라우저를 종료하면 함께 제거됩니다. 참고 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
쿠키와 세션의 개념과 차이에 대해 설명할 수 있습니다. (#67)