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

느린 3G 환경 편의점 상세 페이지 편의점 정보 표시란 정보 표시 오류 #80

Open
michoball opened this issue Jan 16, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@michoball
Copy link
Collaborator

느린 3G환경에서 편의점 상세 페이지로 간 후 새로고침을 하면
편의점 이미지를 받아오는 작업에서 값이 전송되지 않는 오류 발생

편의점 정보를 그리는 useLayoutEffect가 원인으로 보임

@michoball michoball added the bug Something isn't working label Jan 16, 2023
@michoball
Copy link
Collaborator Author

michoball commented Jan 18, 2023

useLayoutEffect는 브라우져 렌더링 과정에서 Render tree의 노드들을 화면상 실제 픽셀로 변환에 그려내는 paint 과정 전에 작용하는 effect 로 paint 전에 동기적으로 작동하여 최초로 화면을 그릴 때 비동기롤 받아오는 데이터를 화면에 표시해야하면 useLayoutEffect는 오류를 낼수 있다.

그러므로 위와 같은 상황에서는 useLayoutEffect가 아닌 useEffect가 적합해보여서 수정하였다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant