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
- 코딩테스트
- 코테
- 셋팅
- array정적메서드
- 모던자바스크립트
- 구글 로그인
- useRouter
- error
- 리터럴
- 스파르타코딩클럽
- git
- 코드카타
- CORS
- Next
- 자주 까먹는
- 소셜 로그인
- domain
- vercel
- React
- 모던 자바스크립트
- vscode
- 프로젝트 셋팅
- deep dive
- nextjs
- 내일배움캠프
- 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 |