Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 국비지원
- 야놀자
- 프론트엔드개발자
- 백준
- 너비우선탐색
- 컴퓨터과학
- git
- 컴퓨터공학
- cpu
- 코딩테스트
- computerscience
- js
- 그리디
- DFS
- html/css/js
- 호이스팅
- Javascript
- KAKAO
- BFS
- LinkSnap
- github
- CSS
- 패스트캠퍼스
- 알고리즘
- 자바스크립트
- nodejs
- CS
- 코테
- 국비지원취업
- 부트캠프
Archives
- Today
- Total
My Boundary As Much As I Experienced
App Router에서는 params를 getServerSideProps를 거치지 않고도 페이지 컴포넌트에서 쓸 수 있다. 본문
FrontEnd/Next.js
App Router에서는 params를 getServerSideProps를 거치지 않고도 페이지 컴포넌트에서 쓸 수 있다.
Bumang 2024. 6. 26. 00:05앱라우터에서는 아래처럼 getServerSideProps 등을 거치지 않고도 params객체를 꺼내 쓸 수 있다.
// app/[id]/page.tsx
interface PageProps {
params: {
id: string;
};
}
const Page = ({ params }: PageProps) => {
return (
<div>
<h1>Post ID: {params.id}</h1>
</div>
);
};
export default Page;
페이지 라우터에서는 getServerSideProps에서 context객체에서 추출한 값을
{ props: { ... }} 내에 리턴해주는 것을
페이지 컴포넌트에서 또 받아야 한다.
어휴 번거로워..
// pages/[id].tsx
import { GetServerSideProps } from 'next';
interface PageProps {
id: string;
}
const Page = ({ id }: PageProps) => {
return (
<div>
<h1>Post ID: {id}</h1>
</div>
);
};
export const getServerSideProps: GetServerSideProps = async (context) => {
const { id } = context.params;
return {
props: {
id,
},
};
};
export default Page;
'FrontEnd > Next.js' 카테고리의 다른 글
Next.js 14 애플 로그인 연동하기 (w. Firebase) (0) | 2024.07.10 |
---|---|
Next13부터는 getServerSideProps를 굳이 거치지 않더라도 params와 searchParams를 가져올 수 있다. (0) | 2024.06.30 |
Next.js의 pre-rendering이란? (0) | 2024.06.25 |
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './lib/parser' is not defined by "exports" in /Users/... 에러 해결하기 (0) | 2024.04.29 |
Next.js의 getStaticPaths 정리 (0) | 2024.04.29 |