我想在 nextjs 中创建动态页面以匹配以下路线users/[user]/[dashboard]
。我的文件结构
pages/
users/
-[user].js // will match for /users/123
- index.js // will match for /users
dashboard/
- [dashboard].js // will match for /users/1234/ABCD
我只收到[user]
查询参数中的 ,而不是 [dashboard].js 中的 [dashboard] 。有人可以解释如何安排文件结构以匹配users/[user]/[dashboard]