Open ShotaroHirose59 opened 8 months ago
https://nextjs.org/learn/dashboard-app/navigating-between-pages In the previous chapter, you created the dashboard layout and pages. Now, let's add some links to allow users to navigate between the dashboard routes.
next/link
usePathname()
Web標準のaタグではナビゲーションでページ全体が更新される。 Next.jsのLinkコンポーネントを使うとクライアントサイドナビゲーションが可能になり、ページ全体を更新する必要がなくなる
あとで見る How Routing and Navigation Works
usePathname()フックで現在のURLのPathを取得できる URLのpathが/dashboard/invoicesページであれば/dashboard/invoicesを取得される
/dashboard/invoices
https://nextjs.org/learn/dashboard-app/navigating-between-pages In the previous chapter, you created the dashboard layout and pages. Now, let's add some links to allow users to navigate between the dashboard routes.
Topics
next/link
component.usePathname()
hook.キーワード