Next.js - Routing poco profondo
In Next.js, il routing superficiale si riferisce alla navigazione alla stessa pagina ma nessuna chiamata ai metodi getServerSideProps, getStaticProps e getInitialProps.
Per eseguire il routing superficiale, usiamo Router con flag superficiale come true. Vedi l'esempio sotto.
Aggiorna il file index.js nella directory delle pagine come segue.
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
Avvia Next.js Server
Eseguire il comando seguente per avviare il server -.
npm run dev
> [email protected] 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
Verifica output
Apri localhost: 3000 in un browser, quindi fai clic sul collegamento Ricarica e vedrai il seguente output.