[사전 미션 - CSR을 SSR로 재구성하기] - 바다(손해영) 미션 제출합니다. #5
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.
🍀 구현 영상
-.Clipchamp.mp4
🤔 생각해 보기
1. CSR과 SSR에서 초기 페이지 로딩 시간에 어떤 차이가 있었을까? 그 이유는?
SSR의 초기 렌더링 시간이 CSR보다 짧았습니다. 영화 데이터가 반영된 부분이 화면에 로딩 되는 시간이 SSR이 더 빨랐습니다.
CSR은 js를 로드하고 실행한 후에 렌더링이 이루어지므로 초기 로딩이 느리게 느껴집니다. 그에 반해 SSR은 서버에서 미리 HTML을 렌더링해 전달하므로 초기 로딩이 빠르게 느껴집니다.
2. 서버 측에서 데이터를 가져오는 방식과 클라이언트 측에서 데이터를 가져오는 방식을 비교해서 설명한다면?
비교 표