如何在Next.js中強制重新加載頁面
在組件中,您可以使用useRouter
鉤子:
1 | import { useRouter } from 'next/router' |
有時無法使用此方法,例如在非React組件中,例如在實用函數中。在這種情況下,您可以這樣做:
1 | import Router from 'next/router' |
tags: [“Next.js”, “router”, “page refresh”, “reloading”]
在組件中,您可以使用useRouter
鉤子:
1 | import { useRouter } from 'next/router' |
有時無法使用此方法,例如在非React組件中,例如在實用函數中。在這種情況下,您可以這樣做:
1 | import Router from 'next/router' |
tags: [“Next.js”, “router”, “page refresh”, “reloading”]