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
- CORS
- 모던 자바스크립트
- 구글 로그인
- js
- 프로그래머스
- 프로젝트 셋팅
- 리터럴
- 내일배움캠프
- 코딩테스트
- nextjs
- useRouter
- 모던자바스크립트
- vercel
- array정적메서드
- 셋팅
- 초기셋팅
- 티스토리챌린지
- 자주 까먹는
- 스파르타코딩클럽
- 코드카타
- 오블완
- deep dive
- vscode
- 소셜 로그인
- Next
- 코테
- git
- domain
- React
- error
- Today
- Total
목록2024/07/09 (1)
파피루스
[next] 파라미터 가져오는 방법
client components const searchParams = useSearchParams(); const search = searchParams.get("search");https://nextjs.org/docs/app/api-reference/functions/use-search-params server componentsexport default function Page({ params, searchParams,}: { params: { slug: string } searchParams: { [key: string]: string | string[] | undefined } }) { return My Page }
Today I Learned
2024. 7. 9. 13:23