Table of Contents
01. The way React renders the interface
02. React components
03. Summary
Home Web Front-end JS Tutorial Use of react: How React renders UI

Use of react: How React renders UI

Jul 20, 2018 am 10:37 AM
javascript react.js

This article introduces to you the use of react: How React renders UI has a certain reference value. Friends in need can refer to it.

01. The way React renders the interface

Before the emergence of large front-end frameworks such as React, the way we rendered UI elements was to use String templates. In React, we render UI elements by using JavaScript objects.

As we mentioned in the previous chapter, React proposed the concept of virtual DOM in order to save the front-end performance consumed by frequent DOM operations. The JavaScript object we create here is Virtual DOM node used to describe "what the page looks like". How is "virtual DOM" finally transformed into "real DOM" and displayed in the browser? The complex work here (manipulating the DOM tree, adding nodes) is done by React.

Let us first look at how to create a virtual DOM node (ie React element) through a JavaScript object:

// 为了创建一个 React 元素,我们需要使用 React.createElement API
const element = React.createElement(
  'h1',
  {className: 'greeting'},
  'Hello, world!'
);
Copy after login

The API will eventually return a JavaScript object in the following format:

const element = {
  type: 'h1',
  props: {
    className: 'greeting',
    children: 'Hello, world'
  }
};
Copy after login

React will find a place for this JavaScript object in the generated virtual DOM tree, and eventually merge it with the real DOM tree in the browser to render the view.

However, in actual development, you will rarely use the React.createElement API, but create React elements as follows:

const element = (
  <h1 className="greeting">
    Hello, world!
  </h1>
);
Copy after login

This creation method is It is implemented through a JavaScript syntax extension called JSX. I will not elaborate further on the concept of JSX here. You can understand it as a kind of simplicity. Syntactic sugar for efficiently creating React elements, used to build the virtual DOM of the entire application more elegantly.

It is worth mentioning that JSX is not part of the React framework (this stems from the philosophy of divide and conquer as much as possible in React code organization), so React is not responsible for merging virtual DOM and real Like the DOM, it is responsible for converting code written in JSX syntax into JavaScript objects using the React.createElement API.

Then who will do this? The answer is Babel. Usually, we use webpack to package our JavaScript code and send it to Babel for translation. Now you understand why React, webpack and Babel always appear together like conjoined twins.

So far, we already know how to create React elements, but in fact we just "Create", before the element is actually displayed on the browser, we also check the key One step "rendering".

Here we speed up. If we want to render the previously created React element, we need to use the following code:

<p id="root"></p>

const element = <h1>Hello, world</h1>;

// 使用 ReactDOM.render API
ReactDOM.render(
  element,
  document.getElementById('root')
);
Copy after login

Yes, the id is root The DOM element will become the root node of the entire virtual DOM tree. So far, we have mastered the entire process of converting React elements into virtual DOM nodes and then rendering the elements on the browser. However, just being able to use React to render visual elements is far from realizing the value of React. Don’t forget that React exists as a large-scale front-end framework (although compared to other large-scale front-end frameworks, its components are not complete). The real value of React is: Use React elements to implement various complex tasks concisely and efficiently Business logic.

How to do this? The answer is to use React components.

02. React components

React components not only give us the ability topackage a bunch of visual elementsbut also give us the ability to packagea series of corresponding Interaction behavior. It can be said: React components are the cornerstone of React applications.

So what is a React component? You can imagine that a React component is like a factory, which receives a series of materials called properties, and ultimately produces (returns) React elements/components.

Let’s put it another way, a React component is essentially a JavaScript function that receives a series of parameters and returns a React element/component. Let's see how it is written:

import React form 'react'
import ReactDOM form 'react-dom'

function Button(props) {
    return <button>{props.buttonName}</button>
}
Copy after login

See, React components fully comply with the componentization idea we mentioned before, receiving parameters and returning UI elements.

It’s a great idea to think about building React applications from a component perspective, because componentization means modularity and reusability. Component classes are like instances of a factory producing components. These component classes fully comply with the "Single Response Principle" and "DOT" principles.

In React’s official documentation, a large number of React APIs are about components. Therefore, components are a very important concept in React. In essence, components are the main encapsulation unit given to us by React. Through components, we can quickly build a large application with complex interaction logic and visual interface like building blocks, and each visual unit in the application has very clear responsibilities.

Hopefully by this point you can appreciate the value of React when building large applications. It allows us to focus on a small part of the application without inadvertently affecting the rest of the application (i.e. each component In line with the principle of "high cohesion, low coupling"). Using React, it is easier for us to write clear and elegant code.

03. Summary

Finally, let us once again summarize the two advantages of using components to render interfaces in React:

  1. Easy to reuse : We can call a component at any time and place;

  2. Convenient customization: By giving different attributes to the component, we can get different UI elements;

Related recommendations:

Use of React: Five major features of the react framework

The above is the detailed content of Use of react: How React renders UI. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to get HTTP status code in JavaScript the easy way How to get HTTP status code in JavaScript the easy way Jan 05, 2024 pm 01:37 PM

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

See all articles