Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- 셋팅
- js
- 리터럴
- 코딩테스트
- 모던자바스크립트
- 코드카타
- 초기셋팅
- 오블완
- CORS
- React
- Next
- 프로젝트 셋팅
- array정적메서드
- 자주 까먹는
- error
- 구글 로그인
- 코테
- nextjs
- 내일배움캠프
- 소셜 로그인
- vscode
- 스파르타코딩클럽
- 모던 자바스크립트
- vercel
- domain
- useRouter
- 티스토리챌린지
- deep dive
- git
- Today
- Total
도록
[next] 파라미터 가져오는 방법 본문
client components
const searchParams = useSearchParams();
const search = searchParams.get("search");
https://nextjs.org/docs/app/api-reference/functions/use-search-params
server components
export default function Page({ params, searchParams,}: {
params: { slug: string }
searchParams: { [key: string]: string | string[] | undefined }
}) {
return <h1>My Page</h1>
}
'Today I Learned' 카테고리의 다른 글
punycode deprecated 에러 (0) | 2024.07.29 |
---|---|
[google map] react에서 구글 맵 연동하기 / 1탄. 마커 찍기 (0) | 2024.07.29 |
[팀플] 내가 해야 할 일은? (0) | 2024.07.08 |
CSR vs. SSR, 무슨 차이인가요? (0) | 2024.07.01 |
[next] 왜 Next.js 를 쓸까 (0) | 2024.07.01 |