brandonxiang / example-nextjs

使用Next.js实现React SSR的优雅降级
9 stars 2 forks source link

index_csr #1

Open ghcmtt opened 2 years ago

ghcmtt commented 2 years ago

初学nextjs,不是很懂,请问一下,csr build export之后,每个页面都要加一个http://localhost:3000/index_csr.html?xxx=的.html后缀,a.html,b.html,这样每个路由和子路由都是一个html,如果某个路由里想用react-router怎么办呢?为什么框架不生成spa呢?这样降级的时候只需要访问http://localhost:3000/index_csr,http://localhost:3000/a/b,spa就可以了啊

ghcmtt commented 2 years ago

哦,有getStaticPaths渲染动态路由,之前没看到这。。