我正在使用 React 上下文来存储 NextJS 网站的语言环境(例如 example.com/en/)。设置如下所示:
components/Locale/index.jsx
import React from 'react';
const Context = React.createContext();
const { Consumer } = Context;
const Provider = ({ children, locale }) => (
<Context.Provider value={{ locale }}>
{children}
</Context.Provider>
);
export default { Consumer, Provider };
页/_app.jsx
import App, { Container } from 'next/app';
import React from 'react';
import Locale from '../components/Locale';
class MyApp extends App {
static async getInitialProps({ Component, ctx }) {
const pageProps = Component.getInitialProps ? await Component.getInitialProps(ctx) : {};
const locale = ctx.asPath.split('/')[1];
return { pageProps, locale };
}
render() {
const {
Component,
locale,
pageProps,
} = this.props;
return {
<Container>
<Locale.Provider locale={locale}>
<Component {...pageProps} />
</Locale.Provider>
</Container>
};
}
}
目前为止,一切都好。现在,在我的一个页面中,我以getInitialProps
生命周期方法从内容丰富的CMS API获取数据。这看起来有点像这样:
pages/index.jsx
import { getEntries } from '../lib/data/contentful';
const getInitialProps = async () => {
const { items } = await getEntries({ content_type: 'xxxxxxxx' });
return { page: items[0] };
};
在此阶段,我需要使用语言环境进行此查询,因此我需要访问上述getInitialProps
中的Local.Consumer
。这可能吗?
根据此处的文档,这似乎是不可能的:https://github.com/zeit/next.js/#fetching-data-and-component-lifecycle您可以通过将组件包装在上下文的 Consumer 中来访问 React 上下文数据,如下所示:
<Locale.Consumer>
({locale}) => <Index locale={locale} />
</Locale.Consumer>
但是getInitialProps是为顶级页面运行的,并且无法访问props。
你能在另一个 React 生命周期方法(如 componentDidMount)中获取你的条目吗?然后,您可以将项目存储在组件状态。