- 博客(4)
- 收藏
- 关注
原创 nextjs 路由
1.官网路由介绍nextjs路由next项目的路由默认为page下面的文件生成对应的路由。http://localhost:3000/ 代表的 /page/index.tsx.http://localhost:3000/demo指的是page --> demo -->index.tsx文件。2.动态路由在 Next.js 中,您可以将括号添加到页面 ([param]) 以创建动态路由(也称为 url slugs、pretty urls 等)。pages/post/[pid..
2022-04-14 14:48:20 1871 1
原创 seo优化 nextjs
1.nextjs服务端请求,静态渲染const Category = () => { return <div> </div>;}export async function getServerSideProps() { // Fetch data from external API const res = await fetch('https://...'); const categoryList = await res.json(); //
2022-04-14 14:06:09 961
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人