在React的开发中,我们可能会使用react-i18next进行国际化的处理。 众所周知,react-i18next中,我们通常有类组件和函数组件等多种使用方式。 1、在类组件中使用withTranslation() export default connect()(withTranslation()(组件名)) 然后使用 const { t } = this.props,通过t('common.message')来获取国际化文字。 2、在函数组件中使用useTranslation() const { t } =…