next-i18n-router 有时会自动将语言环境变量更改为随机语言环境变量

问题描述 投票:0回答:1

我在网站上使用了三个包来实现 i18n。

"next-i18n-router": "^5.4.0",
"i18next-resources-to-backend": "^1.2.0",
"react-i18next": "^14.1.0",

这是我的 i18nConfig:

{
locales: locales,
defaultLocale: "en", 
prefixDefault: false, 
}

问题是,即使我尝试使用 defaultLocale 访问任何路由,cookie 变量“NEXT_LOCALE”有时也会自动更改。假设我尝试访问 mywebsite.com/products,由于某些未知原因,我将被重定向到 mywebsite.com/de/products。

我也尝试将“NEXT_LOCALE”的值设置为“en”,但这不起作用。我还创建了一个客户端组件来检查 cookie,如果“NEXT_LOCALE”cookie 不存在,该组件会将 cookie 设置为值“en”,这也没有帮助。我该如何解决这个问题?

config locale middleware next.js13 react-i18next
1个回答
0
投票

您可以尝试使用不同的软件包。就我而言,我使用了“negotiator”和“@formatjs/intl-localematcher”。

这是一个简单的中间件,其中包含两个包,用于从 url 参数检测区域设置:

import { NextResponse } from 'next/server'
import type { NextRequest } from 'next/server'

import { i18n } from '@/i18n.config'

import { match as matchLocale } from '@formatjs/intl-localematcher'
import Negotiator from 'negotiator'

function getLocale(request: NextRequest): string | undefined {
  const negotiatorHeaders: Record<string, string> = {}
  request.headers.forEach((value, key) => (negotiatorHeaders[key] = value))

  // @ts-ignore locales are readonly
  const locales: string[] = i18n.locales
  const languages = new Negotiator({ headers: negotiatorHeaders }).languages()

  const locale = matchLocale(languages, locales, i18n.defaultLocale)
  return locale
}

export function middleware(request: NextRequest) {
  const pathname = request.nextUrl.pathname
  const pathnameIsMissingLocale = i18n.locales.every(
    locale => !pathname.startsWith(`/${locale}/`) && pathname !== `/${locale}`
  )

  // Redirect if there is no locale
  if (pathnameIsMissingLocale) {
    const locale = getLocale(request)
    return NextResponse.redirect(
      new URL(
        `/${locale}${pathname.startsWith('/') ? '' : '/'}${pathname}`,
        request.url
      )
    )
  }
}

export const config = {
  // Matcher ignoring `/_next/` and `/api/`
  matcher: ['/((?!api|_next/static|_next/image|favicon.ico).*)']
}
© www.soinside.com 2019 - 2024. All rights reserved.