【发布时间】:2020-03-26 13:22:43
【问题描述】:
据next.js官方documentation:
import React from 'react'
import App from 'next/app'
class MyApp extends App {
// Only uncomment this method if you have blocking data requirements for
// every single page in your application. This disables the ability to
// perform automatic static optimization, causing every page in your app to
// be server-side rendered.
//
// static async getInitialProps(appContext) {
// // calls page's `getInitialProps` and fills `appProps.pageProps`
// const appProps = await App.getInitialProps(appContext);
//
// return { ...appProps }
// }
render() {
const { Component, pageProps } = this.props
return <Component {...pageProps} />
}
}
export default MyApp
据我了解,如果我在_app.js 文件中使用getInitialProps,这将导致我的页面在服务器端呈现。但这是否意味着客户端渲染将不起作用(导航等)?如果不是,那到底是什么意思
使您的应用中的每个页面都在服务器端呈现。
?
【问题讨论】:
标签: reactjs server-side client-side next.js server-side-rendering