如何从 api 端点正确加载 next-i18next 中的 i18n 资源?

Mar*_*rco 10 i18next reactjs next.js react-i18next

我有一个 nextjs 应用程序,我想使用 i18next 和 next-i18next (https://github.com/isaachinman/next-i18next)扩展它。

默认配置是在 下查找 json 文件./public/locales/{lng}/{ns}.json,其中 lng 是语言,ns 是命名空间。

然而,我的要求是,这应该从 api 端点提供。我正在努力寻找正确的配置,因为它next-i18next现在忽略我的设置,并且没有向我的后端发出任何 xhr 请求。

下一个-i18next.config.js:

const HttpApi = require('i18next-http-backend')

module.exports = {
    i18n: {
        defaultLocale: 'de',
        locales: ['en', 'de'],
    },
    backend: {
        referenceLng: 'de',
        loadPath: `https://localhost:5001/locales/de/common`,
        parse: (data) => {
            console.log(data)
            return data 
        }
    },
    debug: true,
    ns: ['common', 'footer', 'second-page'], // the namespaces needs to be listed here, to make sure they got preloaded
    serializeConfig: false, // because of the custom use i18next plugin
    use: [HttpApi],
}
Run Code Online (Sandbox Code Playgroud)

我在这里不知所措。我究竟做错了什么?

Mar*_*rco 18

最终我把它拼凑起来。

const I18NextHttpBackend = require('i18next-http-backend')

module.exports = {
    i18n: {
        defaultLocale: 'de',
        locales: ['de'],

        backend: {
            loadPath: `${process.env.INTERNAL_API_URI}/api/locales/{{lng}}/{{ns}}`
        },
    },
    debug: true,
    ns: ["common", "employees", "projects"],
    serializeConfig: false,
    use: [I18NextHttpBackend]
}
Run Code Online (Sandbox Code Playgroud)

您可能会遇到这样的错误 You are passing a wrong module! Please check the object you are passing to i18next.use(): . 如果是这种情况,您可以使用以下导入强制 http 后端加载为 commonjs:

const I18NextHttpBackend = require('i18next-http-backend/cjs')
Run Code Online (Sandbox Code Playgroud)

第一个在 webpack 5 上工作,而我必须在 webpack 4 上使用 cjs import。虽然我找不到原因。

之后就一帆风顺了:

_app.tsx:

/*i18n */
import { appWithTranslation } from 'next-i18next'
import NextI18nextConfig from '../../next-i18next.config'

const MyApp = ({ Component, pageProps }: AppProps) => {
  return (
    <>
      <MsalProvider instance={msalApp}>
        <PageLayout>
          <Component {...pageProps} />
        </PageLayout>
      </MsalProvider>
    </>
  )
}

export default appWithTranslation(MyApp, NextI18nextConfig)
Run Code Online (Sandbox Code Playgroud)

任何页面.tsx:

export const getServerSideProps: GetServerSideProps = async ({ locale }) => {
  return {
    props: {
      ...(await serverSideTranslations(locale, ['common', 'employees'])),
      // Will be passed to the page component as props
    },
  };
}
Run Code Online (Sandbox Code Playgroud)

如果您只需要在构建过程中获取一次区域设置,您可以使用getStaticProps它 - 这取决于您。