쿼리로 전달 받은 값 타입은 String

김용희·2022년 4월 5일
0
import  { useRouter } from "next/router";
const router = useRouter();
const { wineId } = router.query;
let tests = res.data.object.includes(Number(wineId));
        console.log(tests);

해당 3번째줄 wineId는 스트링이다
이때 includes 하면 와인안에 있는값은 number인데
wineId는 스트링이므로 false 반환된다
그러므로 Number(wineId)로 감싸서 비교하자

profile
He threw his knapsack over the brick wall

0개의 댓글