Study/React
[React] Cannot read properties of undefined (reading 'search')
모모
2022. 1. 8. 20:42
Cannot read properties of undefined (reading 'search')
코드가 계속 안먹혔다.. 정말 뭐가 문젠지 알 수 없어서 고민을 많이 했다.
const { username } = match.params;
const { tag, page } = ps.parse(location.search,
// 생략
와 같은 코드였는데 v6 를 사용하면서 match는 사용하지 않는다는건 인식
loaction.search는 왜 안먹히는거지? 했더니 location도 업데이트 되면서 더는 사용하지 않는..함수라고..
import { useParams, useLocation } from "react-router-dom";
const { username } = params;
const { tag, page } = qs.parse(useLocation, {
// 중략
다음과 같이 바꿔주었다.