react Chinese means "reaction"; in programming languages, react is an open source JavaScript library that provides data rendering as HTML views. React views usually use other components that contain custom HTML tags. Component rendering.
The operating environment of this tutorial: windows7 system, react17.0.1 version, Dell G3 computer.
Recommended: react video tutorial
React is an open source JavaScript library that provides data rendering into HTML views. React views are typically rendered using components that contain other components specified in custom HTML markup. React provides programmers with a model where subcomponents cannot directly affect outer components, efficient updates to HTML documents when data changes, and clean separation between components in modern single-page applications.
The Origin of React
React originated as an internal project at Facebook. Because the company was not satisfied with all the JavaScript MVC frameworks on the market, it decided to write its own , used to set up Instagram’s website. After making it, I found that this set of things is very useful, so I open sourced it in May 2013.
The relationship between react and traditional MVC
React is not a complete MVC The framework can be considered at most as the V (View) in MVC. Even React does not very much recognize the MVC development model; React is a library for building page UI. It can be simply understood that React will divide the interface into independent small blocks. Each block is a component. These components can be combined and nested to become our page
So What does react mean in Chinese?
react British [riˈækt] American [riˈækt]
v. Reaction, (to...) react; respond; (to food, etc.) have adverse reactions, allergies; chemical reactions Reaction; chemical change taking place.
Third person singular: reacts
Present participle: reacting
Past tense: reacted
Past participle: reacted
The above is the detailed content of What does react mean in Chinese?. For more information, please follow other related articles on the PHP Chinese website!