在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
简介react-i18next 是基于
安装需要同时安装
配置 在
en.json { "header": { "register":"Register", "signin":"Sign In", "home": "Home" }, "footer": { "detail" : "All rights reserved @ React" }, "home": { "hot_recommended": "Hot Recommended", "new_arrival": "New arrival", "joint_venture": "Joint Venture" } } zh.json { "header": { "register":"注册", "signin":"登陆", "home": "首页" }, "footer": { "detail" : "版权所有 @ React" }, "home": { "hot_recommended": "爆款推荐", "new_arrival": "新品上市", "joint_venture": "合作企业" } } config.ts import i18n from 'i18next'; import { initReactI18next } from 'react-i18next'; import translation_en from './en.json'; import translation_zh from './zh.json'; const resources = { en: { translation: translation_en, }, zh: { translation: translation_zh, }, }; i18n.use(initReactI18next).init({ resources, lng: 'zh', interpolation: { escapeValue: false, }, }); export default i18n; 使用引用配置文件 在 import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App'; import './i18n/config'; // 引用配置文件 ReactDOM.render( <React.StrictMode> <App /> </React.StrictMode>, document.getElementById('root') ); 在组件中使用方法一 在 类组件 中使用 import React from 'react'; import styles from './Home.module.css'; // 引入HOC高阶函数withTranslation 和 i18n的ts类型定义WithTranslation import { withTranslation, WithTranslation } from "react-i18next" class HomeComponent extends React.Component<WithTranslation> { render() { const { t } = this.props; return <> <h1>{t('header.home')}</h1> <ul> <li>{t('home.hot_recommended')}</li> <li>{t('home.new_arrival')}</li> <li>{t('home.joint_venture')}</li> </ul> </> } } export const Home = withTranslation()(HomeComponent); // 使用withTranslation高阶函数来完成语言配置的数据注入 方法二 在 函数式组件 中使用 import React from 'react'; import { useTranslation, Trans } from 'react-i18next' export const Home: React.FC = () => { const { t } = useTranslation() return ( <div> <h1>{t('header.home')}</h1> <ul> <li>{t('home.hot_recommended')}</li> {/* 还有一种方式 */} <li><Trans>home.new_arrival</Trans></li> </ul> </div> ); }; 切换语言 import i18n from 'i18next'; const changeLanguage= (val) => { i18n.changeLanguage(val); // val入参值为'en'或'zh' }; 或 import React from 'react'; import { useTranslation } from 'react-i18next' export const Home: React.FC = () => { const { t, i18n } = useTranslation() return ( <button onClick={()=>i18n.changeLanguage(i18n.language=='en'?'zh':'en')}>{i18n.language=='en'?'zh':'en'}</button> ); }; 到此这篇关于React国际化react-i18next的文章就介绍到这了,更多相关React国际化react-i18next内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论