stackoverflow(2)
-
[Next.js] router.pathname과 router.route의 차이
Photo by Nubelson Fernandes on Unsplash Next.js 에서 router의 프로퍼티 중 pathname과 route의 차이가 뭘까요? 알아보고자 API Document를 찾아보았지만 pathname은 있었지만 route에 대한 설명은 없었습니다. 라우터를 통한 페이지 이동 후 출력을 해보았을 때에 둘 다 같은 경로를 출력하는 것을 확인할 수 있었습니다. 혹시나해서 해당 API Document의 변경 이력을 찾아보니 route에 대한 설명이 사라졌음을 확인했습니다. github.com/vercel/next.js/commit/18d8c90c3f9bead7ac478f6c9a32bdb5d2591832#diff-129f17bae1a499f319a70b9e5821656cbe48f7b6..
2020.12.28 -
[Next.js] Url 객체를 사용한 라우팅
Next.js의 라우팅을 Url object를 사용하여 페이지 이동시 예상한대로 작동하지 않았다고 합니다. stackoverflow.com/q/64172527/5570106 Unexpected behaviour when use Next.js router push with URL object According to the Next.js documentation, I can use the router push function with a URL object to route dynamic paths, like this example : import { useRouter } from 'next/router' export default func... stackoverflow.com 답변으로 다음과 같이 달았습니다..
2020.12.26