答案 0 :(得分:0)
[...page].tsx 只会捕获 / 之后的路由,因此 http://localhost:3000/page1 或 http://localhost:3000/page1/page2 将进入 [...页面].tsx
并且您可以从 nextjs 路由器中提取值
import {useRouter} from "next/router";
然后在你的组件中
const router = useRouter()
console.log(router.query.page)