gpt4 book ai didi

javascript - react native -i18n : undefined is not an object (evaluating 'RNI18n.languages' )

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

所以,我想为我的应用程序设置多语言支持。基于react-native。然而,当查看 i18n 解决方案时,它会弹出一个错误:

enter image description here

我按照 https://github.com/AlexanderZaytsev/react-native-i18n 上的安装步骤进行操作,一切都已安装并链接正常,没有错误。尝试在全新的项目上设置最基本的示例。 “App.js”文件如下所示:

import I18n from 'react-native-i18n'
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';

export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text>{I18n.t('greeting')}</Text>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});

I18n.fallbacks = true

I18n.translations = {
en: {
greeting: 'Hi!'
},
fr: {
greeting: 'Bonjour!'
}
}

每当我尝试在模拟器上运行它时,系统都会弹出该错误。在这一点上让我发疯。我目前错过了任何已知的解决方案吗?

最佳答案

关于javascript - react native -i18n : undefined is not an object (evaluating 'RNI18n.languages' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44787696/

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