react-i18next:: 您需要使用 initReactI18next 传入一个 i18next 实例
我最近添加了该包并出现此错误。据我所知,我已按照所有步骤进行操作。
我将 Next.js 与next-i18next
通常自动初始化的包一起使用。
react-i18next:: 您需要使用 initReactI18next 传入一个 i18next 实例
我最近添加了该包并出现此错误。据我所知,我已按照所有步骤进行操作。
我将 Next.js 与next-i18next
通常自动初始化的包一起使用。
然后,我们添加
serverSideTranslation
到getStaticProps
或getServerSideProps
在我们的页面级组件(根据您的情况)。
这意味着您需要添加serverSideTranslation
到需要翻译的页面。
例如在您的pages/d/[tab]/index
文件中:
import Head from 'next/head';
import { Input } from '../../../components/Input';
import YouTube from '../../../components/youtube/Main';
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
const index = () => {
return (
<>
<Head>
<title>YouTube</title>
</Head>
<YouTube />
</>
);
};
export const getServerSideProps = async ({ locale }) => ({
props: {
...(await serverSideTranslations(locale, ['common']))
}
});
export default index;
然后在您的Main
组件中进一步向下,您可以documentation
使用以下方法访问翻译:
t('pages.documentation')
module.exports = {
i18n: {
defaultLocale: 'en',
locales: ['en', 'de', 'fr'],
},
react: { useSuspense: false },//this line
};