NextJS 文件系统路由语义

NextJS Filesystem Routing Semantic

在 NextJS 世界中,您可以使用 /hello 路由页面:

方法一:

pages/
|_hello.js

或方法 B:

pages/
|_hello/
   |_index.js

两者都是有效的方法,但是对于可扩展性、用户可读性和大型开源项目来说,哪个是更好的选择。

正如@RGog 在评论中提到的,如果您预见到路由 "/hello" 下有多个子页面,那么最好使用 "/hello/index.js"

例如其他子路线如"/hello/id.js".

所以假设第二种方法可扩展以满足长期路由需求。