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.
🔥 Related Issues
👻 작업 내용
✅ PR Point
search 페이지에서 데이터들을 쫘라락 받는데
그렇다면 각 책에 대한 상세 페이지 정보도 다 받아온다는 건데
이를 상세 페이지에 어떻게 전달을 해야할 지 고민을 했습니다.
원래는
state를 하나 만들어서 상세 페이지 클릭 시 해당 인덱스 번호를 넘겨줘서
이런 식으로 하고 props로 search page에서 받은 데이터를 detail page에 넘겨주려고 했는데,
클릭된 책이 무엇인지 인덱스 찾아야 하고, 그에 맞는 데이터 전달해야 하고 추가적인 task가 많을 거 같아서
그냥 동적 router 설정하고
params로 책 제목 넘겨준 뒤 해당 책제목으로 한 번 더 API 요청 하는 식으로 진행하였습니다!
이렇게 할 때 우려되는 부분이 불필요한 API 요청을 한 번 더 하게 된 것이 아닌가 싶었는데요
보통 이런 상품 페이지의 상세 페이지를 클릭할 때, 한 번 더 API 요청을 하는지 어떻게 하는지 궁금했습니다!!!!
😡 Trouble Shooting
👀 스크린샷 / GIF / 링크
📚 Reference