📜  Next.js-浅层路由

📅  最后修改于: 2020-10-22 06:47:13             🧑  作者: Mango


在Next.js中,浅层路由是指导航到同一页面,但不调用getServerSideProps,getStaticProps和getInitialProps方法。

要进行浅层路由,我们使用浅标志为true的Router。请参见以下示例。

如下更新页面目录中的index.js文件。

import Router from 'next/router'
import Head from 'next/head'

function HomePage(props) {
   return (
      <>
         
            Welcome to Next.js!
         
         
Welcome to Next.js!
Router.push('/?counter=1', undefined, { shallow: true })}>Reload
Next stars: {props.stars}
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,然后单击Reload链接,您将看到以下输出。

浅层路由首页