📅  最后修改于: 2020-10-22 06:46:55             🧑  作者: Mango
到目前为止,在Next.js中,我们正在使用链接反应组件从一个页面导航到另一页面。也有一种编程方式,可以使用路由器组件来达到相同的目的。通常,路由器组件与html标签一起使用。
如下更新页面目录中的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('/posts/one')}>First Post
Next stars: {props.stars}
>
)
}
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
运行以下命令以启动服务器-。
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,您将看到以下输出。
点击不是链接但可以点击的第一篇文章。