如何使用react-i18next转换组件中的字符串?

时间:2019-06-04 11:33:36

标签: reactjs react-i18next

我有一个下拉菜单,列出了选项1,选项2和选项3。我想使用react-i18next来翻译这些选项。我是翻译和使用此框架的新手。

下面是代码,

export default class Example extends React.Component {
    render() {
        return (
            <ParentComponent>
                <button type="button">
                    {this.props.placeholder}
                </button>
                {this.props.values.map(value => (
                    <Item
                        key={value[this.props.value_prop]}
                        value={value}
                        on_select={this.change}>
                        {value[this.props.label_prop]} // i want to 
                        translate this
                    </Item>
                ))}
            </ParentComponent>
        );
}

有人可以提供解决方法的想法吗?或帮助我解决这个问题。谢谢。

1 个答案:

答案 0 :(得分:0)

react-i18next包含了很好的文档,并且还提供了一些examples

您基本上需要将组件包装在withTranslation包装器中,并使用t道具:

import { useTranslation, withTranslation, Trans } from 'react-i18next';
import logo from './logo.svg';
import './App.css';

// use hoc for class based components
class LegacyWelcomeClass extends Component {
  render() {
    const { t, i18n } = this.props;
    return <h2>{t('title')}</h2>;
  }
}
const Welcome = withTranslation()(LegacyWelcomeClass);

您尚未发布完整的组件代码,但其外观应如下所示:

class CompClass extends Component {
    render() {
        const { t, i18n } = this.props;
        return (
            <ParentComponent>
                <button type="button">
                    {this.props.placeholder}
                </button>
                {this.props.values.map(value => (
                    <Item
                        key={value[this.props.value_prop]}
                        value={value}
                        on_select={this.change}>
                        {t(value[this.props.label_prop])} // i want to translate this
                    </Item>
                ))}
            </ParentComponent>
        );
    }
}

const Comp = withTranslation()(CompClass);