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 |
Tags
- 오블완
- 코테
- useRouter
- js
- vscode
- CORS
- Next
- vercel
- 프로젝트 셋팅
- 리터럴
- 모던자바스크립트
- nextjs
- 코딩테스트
- git
- 소셜 로그인
- 내일배움캠프
- 자주 까먹는
- error
- 모던 자바스크립트
- 스파르타코딩클럽
- 구글 로그인
- array정적메서드
- 프로그래머스
- 초기셋팅
- React
- 셋팅
- 코드카타
- domain
- deep dive
- 티스토리챌린지
- Today
- Total
목록2024/09/05 (1)
파피루스
[nextJs/react] 매번 헷갈리는 파라미터 가져오기
Next Client Component = React const { name } = useParams(); Next Server componenttype PageProps = { params: { slug: string } searchParams: { [key: string]: string | string[] | undefined }};export default function Page({ params, searchParams } : PageProps ) { return My Page} Next app router 1. GETimport { type NextRequest } from 'next/server' export function GET(request: NextRequest) { ..
React
2024. 9. 5. 18:46