gpt4 book ai didi

i18next - 获取 i18next 翻译器 缺少 key

转载 作者:行者123 更新时间:2023-12-03 23:18:45 28 4
gpt4 key购买 nike

这是我第一次使用 i18next,我不知道如何使它工作。 (似乎 documentation 对我来说是不完整的)
这是我使用 i18next 的 HTML 代码

<html>   
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/i18next/4.0.0/i18next.min.js" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-i18next/1.1.0/jquery-i18next.min.js"></script>
<script src="/i18nextXHRBackend.min.js"></script>
</head>

<body>
<div id="test">
<a data-i18n="Hello"></a>
<div data-i18n="World"></div>
</div>

<script>
i18next
.init({
"debug": true,
"lng": "en",
"ns": [
"translation"
],
"fallbackLng": false,
"keySeparator": false,
"nsSeparator": false,
resources: {
"backend": {
"loadPath": "locales/{{lng}}/{{ns}}.json"
}
}
}, function(err, t) {
jqueryI18next.init(i18next, $);
$('#test').localize();
});
</script>
</body>
</html>

这是我的 JSON:

{ "Hello" : "Hello in english", "World" : "World in english" }



我的页面中没有任何显示,在控制台中我得到了这个
i18next::translator: missingKey en translation Hello

i18next::translator: missingKey en translation World

我错过了什么吗?

最佳答案

如果您错过了,那是 json 文件中根本没有加载的翻译的标志。

应该有关于后端无法在控制台中加载它们的警告。

确保:locales/en/translation.json可访问 - 或相应地修复路径

关于i18next - 获取 i18next 翻译器 缺少 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42558553/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com