[React] Movie-app Notes - router
4498 단어 Reactnomad coderReact
📒 Nomad Coder ReactJS로 영화 웹 서비스 만들기
강의노트 (2021 Updated ver.)
router
: component를 찾는 url
a 태그를 쓰면 전체페이지가 새로 업데이트됨
하지만 link를쓰면 새로고침 x
url id값 알아내기
import { useParams } from "react-router-dom";
function Detail() {
const x = useParams();
console.log(x);
return <h1>Details..</h1>;
}
export default Detail;
<Route path="/movie/:id" element={<Detail />} />
// 여기 적은 url값(=id) 그대로 넘겨줌
그래서 이 아이디값을 변수로 넣으면
import { useParams } from "react-router-dom";
function Detail() {
const { id } = useParams();
console.log(id);
return <h1>Details..</h1>;
}
export default Detail;
Author And Source
이 문제에 관하여([React] Movie-app Notes - router), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@qeiqiem/React-Movie-app-Notes-Voil-Movie-App저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)