- Next.js 教程
- Next.js - 主页
- Next.js - 概述
- Next.js - 环境设置
- Next.js 特点
- Next.js - 页面
- Next.js - 静态文件服务
- Next.js - 元数据
- Next.js - CSS 支持
- Next.js - 全球 CSS 支持
- Next.js - 预渲染
- Next.js 路由
- Next.js - 路由
- Next.js - 动态 API 路由
- Next.js - 命令式路由
- Next.js - 浅层路由
- Next.js API 路由
- Next.js - API 路由
- Next.js - API 中间件
- Next.js - 响应助手
- Next.js 其他
- Next.js - 打字稿
- Next.js - 环境变量
- Next.js - 部署
- Next.js - CLI
- Next.js 有用资源
- Next.js - 快速指南
- Next.js - 有用的资源
- Next.js - 讨论
Next.js - 浅层路由
在 Next.js 中,浅层路由是指导航到同一页面,但不调用 getServerSideProps、getStaticProps 和 getInitialProps 方法。
为了进行浅层路由,我们使用浅层标志为 true 的 Router。请参阅下面的示例。
更新pages目录中的index.js文件,如下所示。
import Router from 'next/router' import Head from 'next/head' function HomePage(props) { return ( <> <Head> <title>Welcome to Next.js!</title> </Head> <div>Welcome to Next.js!</div> <span onClick={() => Router.push('/?counter=1', undefined, { shallow: true })}>Reload</span> <br/> <div>Next stars: {props.stars}</div> <img src="/logo.png" alt="TutorialsPoint Logo" /> </> ) } export async function getServerSideProps(context) { const res = await fetch('https://api.github.com/repos/vercel/next.js') const json = await res.json() return { props: { stars: json.stargazers_count } } } export default HomePage
启动 Next.js 服务器
运行以下命令启动服务器 -。
npm run dev > nextjs@1.0.0 dev \Node\nextjs > next ready - started server on http://localhost:3000 event - compiled successfully event - build page: / wait - compiling... event - compiled successfully event - build page: /next/dist/pages/_error wait - compiling... event - compiled successfully
验证输出
在浏览器中打开 localhost:3000,然后单击“重新加载”链接,您将看到以下输出。