如何在 Next.js 中设置 i18n 翻译的 URL 路由?

IT技术 reactjs routes internationalization next.js
2021-03-24 04:24:53

我正在使用Next.js i18n-routing来设置多语言网站。这完美地工作。如果我在其中创建文件,/pages/about.js则会根据我的语言环境设置创建 URL,例如:

  • CN -> /about
  • 德 -> /de/about
  • ES-> /it/about

这一切都很好。

如果我想为每种语言翻译 URL 路由怎么办?我被困在如何设置它...

  • CN -> /about
  • 德 -> /de/uber-uns
  • ES-> /it/nosotros

?

1个回答

您可以通过利用rewrites您的next.config.js文件来实现翻译的 URL 路由

module.exports = {
    i18n: {
        locales: ['en', 'de', 'es'],
        defaultLocale: 'en'
    },
    async rewrites() {
        return [
            {
                source: '/de/uber-uns',
                destination: '/de/about',
                locale: false // Use `locale: false` so that the prefix matches the desired locale correctly
            },
            {
                source: '/es/nosotros',
                destination: '/es/about',
                locale: false
            }
        ]
    }
}

此外,如果您希望在客户端导航期间保持一致的路由行为,您可以围绕next/link组件创建一个包装器,以确保显示翻译后的 URL。

import { useRouter } from 'next/router'
import Link from 'next/link'

const pathTranslations = {
    de: {
        '/about': '/uber-uns'
    },
    es: {
        '/about': '/sobrenos'
    }
}

const TranslatedLink = ({ href, children }) => {
    const { locale } = useRouter()
    // Get translated route for non-default locales
    const translatedPath = pathTranslations[locale]?.[href] 
    // Set `as` prop to change displayed URL in browser
    const as = translatedPath ? `/${locale}${translatedPath}` : undefined

    return (
        <Link href={href} as={as}> 
            {children}
        </Link>
    )
}

export default TranslatedLink

然后在您的代码中使用TranslatedLink而不是next/link

<TranslatedLink href='/about'>
    <a>Go to About page</a>
</TranslatedLink>

请注意,您可以重用该pathTranslations对象来动态生成 中的rewrites数组,next.config.js并为翻译后的 URL 提供单一的真实来源。

当然 - 这是一个简单的解决方案,不能很好地扩展。您可能需要考虑为更复杂和可扩展的解决方案添加自定义服务器
2021-06-06 04:24:53
我正在研究重写,但是管理 9 种语言和 100 多页的重写似乎有点笨拙。此外,您还有动态路由,这使重写变得越来越复杂。
2021-06-08 04:24:53