我正在尝试react-i18next
在客户端上使用i18next-fetch-backend
,即使我可以通过浏览器访问 JSON 翻译文件,但在init
例行程序中处理它们的方式有些混乱。
作为记录,我将create-react-app
用作前端 React 应用程序的基础,如果这有所不同,到目前为止,我所有的测试都在 localhost 中(使用 localhost:3000 上的 React 应用程序和“服务器”在本地主机上:8000)。
这是我的初始化文件:
import i18n from 'i18next';
import LanguageDetector from 'i18next-browser-languagedetector';
import Cache from 'i18next-localstorage-cache';
import Fetch from 'i18next-fetch-backend';
i18n
.use(LanguageDetector)
.use(Cache)
.use(Fetch)
.init({
fallbackLng: 'en',
ns: ['common','app'],
defaultNS: 'common',
preload: ['en'],
wait: true,
backend: {
loadPath: 'http://localhost:8000/static/locales/{{lng}}/{{ns}}.json',
addPath: 'http://localhost:8000/static/locales/{{lng}}/{{ns}}',
parse: function (data) { console.log("DATA", data) },
init: {
mode: 'no-cors',
credentials: 'include',
cache: 'default'
}
},
cache: {
enabled: true,
prefix: 'i18next_translations_',
expirationTime: 24*60*60*1000 //one day
},
debug: true,
detection: {
order: ['localStorage', 'cookie'],
lookupCookie: 'i18nextLng',
lookupLocalStorage: 'i18nextLng',
caches: ["localStorage"]
//cookieMinutes: 10 // if we want the cookie to expire
},
});
export default i18n;
...然后包装我的应用程序的组件如下所示:
import React, { Component } from 'react';
import { I18nextProvider } from 'react-i18next'
import i18n from './i18n' // the init code from above
export default class Localize extends Component {
render () {
return (
<I18nextProvider i18n={i18n}>
{this.props.children}
</I18nextProvider>
)
}
}
...最后,应该进行翻译的组件:
class TestTranslate extends Component {
render () {
const { t } = this.props;
return (
<div>
{t('key1')}
{t('key3')}
</div>
)
}
}
export default translate()(LearnHome)
如果我在加载页面时查看 Chrome 调试器,我会看到以下内容:
执行两个 FETCH 命令:一个 forcommon.json
和一个 for app.json
。在我看来,看起来这两个 FETCH 命令都正确执行,但是在初始化配置数据中根本没有数据进入该parse()
函数。backend
事实上,如果我跳到 Chrome 网络选项卡,浏览器肯定会认为数据已从服务器正确返回到浏览器:
所以我对发生了什么感到困惑。我已经仔细研究了 i18next 文档和几个示例,但到目前为止都是空的。任何帮助表示赞赏。
谢谢!