当重写 _app.js 时,getInitialProps 的用途是什么?
When override _app.js what is getInitialProps used for?
这到底是做什么的?
pageProps = await Component.getInitialProps(ctx)
看起来"pageProps"这只是一个空对象
import App, {Container} from 'next/app'
import React from 'react'
export default class MyApp extends App {
static async getInitialProps ({ Component, router, ctx }) {
let pageProps = {}
if (Component.getInitialProps) {
pageProps = await Component.getInitialProps(ctx)
}
return {pageProps}
}
render () {
const {Component, pageProps} = this.props
return <Container>
<Component {...pageProps} />
</Container>
}
}
getInitialProps
允许您调用以获取您希望组件在服务器上呈现时具有的道具。
例如,我可能需要显示当前天气并且我希望 Google 使用该信息为我的页面编制索引以用于 SEO 目的。
要实现这一点,您需要执行以下操作:
import React from 'react'
import 'isomorphic-fetch'
const HomePage = (props) => (
<div>
Weather today is: {weather}
</div>
)
HomePage.getInitialProps = async ({ req }) => {
const res = await fetch('https://my.weather.api/london/today')
const json = await res.json()
return { weather: json.today }
}
export default HomePage
行 pageProps = await Component.getInitialProps(ctx)
调用该初始函数,以便 HomePage
组件使用该调用天气 API.
产生的初始道具实例化
这到底是做什么的?
pageProps = await Component.getInitialProps(ctx)
看起来"pageProps"这只是一个空对象
import App, {Container} from 'next/app'
import React from 'react'
export default class MyApp extends App {
static async getInitialProps ({ Component, router, ctx }) {
let pageProps = {}
if (Component.getInitialProps) {
pageProps = await Component.getInitialProps(ctx)
}
return {pageProps}
}
render () {
const {Component, pageProps} = this.props
return <Container>
<Component {...pageProps} />
</Container>
}
}
getInitialProps
允许您调用以获取您希望组件在服务器上呈现时具有的道具。
例如,我可能需要显示当前天气并且我希望 Google 使用该信息为我的页面编制索引以用于 SEO 目的。
要实现这一点,您需要执行以下操作:
import React from 'react'
import 'isomorphic-fetch'
const HomePage = (props) => (
<div>
Weather today is: {weather}
</div>
)
HomePage.getInitialProps = async ({ req }) => {
const res = await fetch('https://my.weather.api/london/today')
const json = await res.json()
return { weather: json.today }
}
export default HomePage
行 pageProps = await Component.getInitialProps(ctx)
调用该初始函数,以便 HomePage
组件使用该调用天气 API.