


Detailed explanation of multi-language examples of React-intl implementation
The language internationalization function has recently been added to the project. This article mainly introduces the sample code for multi-language implementation in React-intl. The editor thinks it is quite good, so I will share it with you now and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.
Language internationalization, some people call it language localization, is actually adding multiple languages to the Web App. Our project currently includes the Chinese version and the English version. Logically speaking, "word-for-word replacement" is not It's a big deal, but is there any money to be made with such a low approach?
At the beginning, I considered the traditional method of adding config files to the entire project. According to different languages and regions, loading different config files can achieve the purpose of interface language switching. Of course, it is precisely because this idea is too naive that it is called the "initial" idea. The internationalization of language is not just about translating the UI text on the interface into another language, but also includes date & time display, numerical display (a comma every 3 digits in the English environment: 1,000), and quantifier display (an apple). is apple, two apples should be apples), and there is even a case where a variable is inserted in the middle of a string ("I ate {count} chicken drumsticks for lunch today")...
So this is not It is not just a simple character replacement problem, but also, we need to easily export a directory and put it in word or page, so that other colleagues can compare and translate it. This is very important! ! Do you want the product manager to make changes directly in the code? Or do you want to search and replace one by one? If you just do it without thinking it through, trust me, you'll pay for this.
As an aspiring coder, you definitely don’t want to add a line of <script> reference to index.html, right? In addition, all the text in the UI belongs to the student who used the picture. Please stand up and get out. If you want to elegantly import something from somewhere in a React project, then replace the text in the interface with <capital letters/> components, and finally achieve language internationalization through simple configuration, then we will use React -intl. </script>
For React internationalization, I recommend using React-intl. This library provides React components and APIs to format dates, numbers, strings, etc. Now that we know this library, let’s start using it
Component usage
In order to be more integrated with React, we can use the component method
1 .Install
npm install react-intl --save
2.Add reference
import {IntlProvider, addLocaleData} from 'react-intl';
3.Add locale configuration file
zh-CN.js
const zh_CN = { 'intl.hello': "你好", 'intl.name': '我的名字是 {name}' } export default zh_CN;
en-US.js
const en_US = { 'intl.hello': "hello", 'intl.name': 'my name is {name}' } export default en_US;
4. Use This component is used to set the context of i18n. It will wrap the root component of the application so that the entire application will be configured in the context of i18n. If we want to switch languages dynamically, we need to dynamically change these two configurations.
The two main configuration items are: loacle The current locale messages content in the current language.
##import zhCN from './locale/zh.js'; //导入 i18n 配置文件
import enUS from './locale/en.js';
addLocaleData([...en, ...zh]);
export default class Root extends Component {
static propTypes = {
store: PropTypes.object.isRequired,
history: PropTypes.object.isRequired
}
render() {
const { store , history } = this.props;
return (
<IntlProvider locale='zh' messages={zhCN}>
<Provider store={store}>
<Router history={history}>
</Router>
</Provider>
</IntlProvider>
)
}
}
<FormattedMessage id="intl.hello" defaultMessage={'hello'} />If the current language environment is Chinese, it will display Hello. If it is an English environment, it will display Hello.Dynamic value transfer
<FormattedMessage id="intl.name" values={{name: <b>{name}</b>}} />When we defined intl.name, we used {name} in the template. This means that we can dynamically pass values. We can pass a JSON object through the values attribute in FormattedMessage, which will dynamically display our content. . 6. Usage of other componentsRact-intl provides us with a wealth of components that can help us process strings, times, and dates. You can check the API yourself, if any If you don’t understand something, I can leave a message. API Usage Sometimes we may need to dynamically do internationalization in the code, which requires a dynamic API. Let me briefly introduce how to use 1. Import injectIntl
import { injectIntl, FormattedMessage } from 'react-intl';2. Inject
## in the component #
export default connect(mapStateToProps,mapActionCreators)(injectIntl(App))
I used Redux in the project. The injection should be as above. If you don’t use Redux, you only need to export defuault injectIntl(App)
3. Use the intl object
After the second step of injection, we will now get an intl object in the props of the component. The methods it provides basically correspond to the components we introduced above. At this time, if we want to display a string, we can use formatMessage Method:
const {intl} = this.props; let tmp = intl.formatMessage({id: 'intl.name'},{name: 'joe'});
The first parameter of formatMessage can be passed in Id, and the second parameter can be passed in values. For more detailed information, please view API
Related recommendations:
The above is the detailed content of Detailed explanation of multi-language examples of React-intl implementation. For more information, please follow other related articles on the PHP Chinese website!

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

WebStorm Mac version
Useful JavaScript development tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
