React Cheat Sheet
React has evolved significantly since its inception, and with the rise of Hooks, functional components have become the go-to approach for building React applications. This cheat sheet provides an overview of the key concepts, features, and best practices for using functional components in React.
1. Functional Components Basics
A functional component is a plain JavaScript function that returns a React element.
const MyComponent = () => { return <div>Hello, World!</div>; };
2. Using JSX
JSX is a syntax extension that allows you to write HTML-like code within your JavaScript.
const MyComponent = () => { return ( <div> <h1 id="Welcome-to-React">Welcome to React</h1> </div> ); };
3. Props
Props are used to pass data from a parent component to a child component.
const Greeting = ({ name }) => { return <h1 id="Hello-name">Hello, {name}!</h1>; }; // Usage <greeting name="Alice"></greeting>
4. Default Props
You can define default props for a component.
const Greeting = ({ name = "Guest" }) => { return <h1 id="Hello-name">Hello, {name}!</h1>; };
5. State with useState
The useState Hook allows you to add state to functional components.
import { useState } from 'react'; const Counter = () => { const [count, setCount] = useState(0); return ( <div> <p>Count: {count}</p> <button onclick="{()"> setCount(count + 1)}>Increment</button> </div> ); };
6. Effect Hook: useEffect
The useEffect Hook lets you perform side effects in functional components.
import { useEffect } from 'react'; const DataFetcher = () => { useEffect(() => { fetch('/api/data') .then(response => response.json()) .then(data => console.log(data)); }, []); // Empty dependency array means it runs once return <div>Data fetched. Check console.</div>; };
7. Conditional Rendering
Render different UI elements based on certain conditions.
const LoginMessage = ({ isLoggedIn }) => { return ( <div> {isLoggedIn ? <h1 id="Welcome-back">Welcome back!</h1> : <h1 id="Please-log-in">Please log in.</h1>} </div> ); };
8. Lists and Keys
Render lists of data and use keys to help React identify which items have changed.
const ItemList = ({ items }) => { return (
-
{items.map(item => (
- {item.name} ))}
9. Event Handling
Handle events in functional components.
const Button = () => { const handleClick = () => { alert('Button clicked!'); }; return <button onclick="{handleClick}">Click Me</button>; };
10. Forms and Controlled Components
Handle form input with controlled components.
const Form = () => { const [value, setValue] = useState(''); const handleChange = (e) => { setValue(e.target.value); }; const handleSubmit = (e) => { e.preventDefault(); alert(`Submitted value: ${value}`); }; return (); };
11. Context API
Use the Context API for state management across the component tree.
import { createContext, useContext } from 'react'; const MyContext = createContext(); const MyProvider = ({ children }) => { const value = 'Hello from context'; return ( <mycontext.provider value="{value}"> {children} </mycontext.provider> ); }; const MyComponent = () => { const contextValue = useContext(MyContext); return <div>{contextValue}</div>; };
12. Custom Hooks
Create reusable logic with custom hooks.
import { useState, useEffect } from 'react'; const useFetch = (url) => { const [data, setData] = useState(null); useEffect(() => { fetch(url) .then(response => response.json()) .then(data => setData(data)); }, [url]); return data; }; // Usage const DataComponent = () => { const data = useFetch('/api/data'); return <div>{data ? JSON.stringify(data) : 'Loading...'}</div>; };
13. Memoization with useMemo
Optimize performance by memoizing expensive calculations.
import { useMemo } from 'react'; const ExpensiveComponent = ({ number }) => { const expensiveCalculation = useMemo(() => { // Assume this is a computationally expensive operation return number * 2; }, [number]); return <div>{expensiveCalculation}</div>; };
14. useCallback
Use useCallback to memoize functions to prevent unnecessary re-renders.
import { useCallback } from 'react'; const Button = ({ onClick }) => { return <button onclick="{onClick}">Click me</button>; }; const ParentComponent = () => { const handleClick = useCallback(() => { console.log('Button clicked'); }, []); return <button onclick="{handleClick}"></button>; };
15. useReducer
Manage complex state logic with the useReducer Hook.
import { useReducer } from 'react'; const reducer = (state, action) => { switch (action.type) { case 'increment': return { count: state.count + 1 }; case 'decrement': return { count: state.count - 1 }; default: throw new Error(); } }; const Counter = () => { const [state, dispatch] = useReducer(reducer, { count: 0 }); return ( <div> <p>Count: {state.count}</p> <button onclick="{()"> dispatch({ type: 'increment' })}>Increment</button> <button onclick="{()"> dispatch({ type: 'decrement' })}>Decrement</button> </div> ); };
16. Fragments
Use fragments to group multiple elements without adding extra nodes to the DOM.
const MyComponent = () => { return ( <h1 id="Title">Title</h1> <p>Description</p> > ); };
17. Portals
Render children into a DOM node outside the parent component's DOM hierarchy.
import { createPortal } from 'react-dom'; const Modal = ({ children }) => { return createPortal( <div classname="modal"> {children} </div>, document.getElementById('modal-root') ); };
18. Error Boundaries with Error Boundary Component
Use class components for error boundaries.
import { Component } from 'react'; class ErrorBoundary extends Component { constructor(props) { super(props); this.state = { hasError: false }; } static getDerivedStateFromError(error) { return { hasError: true }; } componentDidCatch(error, errorInfo) { console.log(error, errorInfo); } render() { if (this.state.hasError) { return <h1 id="Something-went-wrong">Something went wrong.</h1>; } return this.props.children; } } // Usage <errorboundary> <mycomponent></mycomponent> </errorboundary>
19. Lazy Loading with React.lazy and Suspense
Dynamically import components to reduce the initial load time.
import { lazy, Suspense } from 'react'; const LazyComponent = lazy(() => import('./LazyComponent')); const App = () => { return ( <suspense fallback="{<div">Loading...}> <lazycomponent></lazycomponent> </suspense> ); };
20. PropTypes for Type Checking
Use prop-types to document and enforce component prop types.
import PropTypes from 'prop-types'; const Greeting = ({ name }) => { return <h1 id="Hello-name">Hello, {name}!</h1>; }; Greeting.propTypes = { name: PropTypes.string.isRequired, };
Functional components offer a clean and straightforward way to build React applications, especially with the powerful capabilities introduced by Hooks. This cheat sheet provides a quick reference to essential concepts, helping you write effective and efficient React code.
The above is the detailed content of React Cheat Sheet: Functional Components Edition. For more information, please follow other related articles on the PHP Chinese website!

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr


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

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

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version
Visual web development tools
