我正在尝试通过单击按钮来更改项目中的默认语言环境。我不想通过推送像 fooo.com/fa
这样的子路径来更改我的 URL。
这是我的 next-i18next 配置:
module.exports = {
i18n: {
defaultLocale: 'en',
locales: ['en', 'fa'],
},
};
这是我更改语言环境并使用它的简单代码:
const { t, i18n } = useTranslation('common');
///
<button onClick={() => i18n.changeLanguage('fa')}>
Click to Change Language
</button>
<p>{t('title')}</p>
但它不起作用并停留在默认的 EN 语言环境中。