-
Notifications
You must be signed in to change notification settings - Fork 100
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
2. 파라미터와 쿼리 · GitBook #81
Comments
유동적인 페이지 주소를 정의할 때 파라미터와 쿼리 사용 파라미터: 특정 id 나 이름을 가지고 조회 파라미터를 받아올 땐 match 안에 들어있는 params 값을 참조 쿼리는 라우트 컴포넌트에게 props 전달되는 location 객체에 있는 search 값 |
타입스크립트를 이용하시는 분이라면 location은 params는 와 같이 받아올 수 있습니다. |
react-router-dom v6 이상 쓰시는 분들은 import { useSearchParams } from 'react-router-dom'; const [searchParams] = useSearchParams(); qs 없이 쿼리스트링을 편하게 가져올수 있습니다 |
match 대신 사용
|
2. 파라미터와 쿼리 · GitBook
https://react.vlpt.us/react-router/02-params-and-query.html
The text was updated successfully, but these errors were encountered: