国际化 react-i18next useTranslation

引用

import { useTranslation } from ‘react-i18next’;

解构t

const [t] = useTranslation();
示例:

<div onClick={toggleCollapsed} title={collapsed ? t('EXPAND_SIDEBAR') : t('COLLAPSED_SIDEBAR')} style={{ textAlign: 'right', paddingRight: 20 }}>
          {collapsed ? <DoubleRightOutlined /> : <DoubleLeftOutlined />}
        </div>
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐