Detailed explanation of how to pass values ​​between react hooks components (using ts)

Detailed explanation of how to pass values ​​between react hooks components (using ts)

From father to son

Pass values ​​through props and use useState to control the state value

In the parent component Father.tsx:

Parent Component

In the child component Child.tsx:

Subcomponents

Display effect:

Display effect

From son to father

Just like react, the callback function is passed into the child component, and the state of the parent component is updated by receiving the return value of the child component.

Parent component, in Father.tsx:

Parent Component

Child component, in Child.tsx:

Subcomponents

Display effect:

Display effect

Optimized version of child-to-parent transmission, using useCallback to store functions that handle events

Parent component, in Father.tsx:

Parent Component

Child component, in Child.tsx:

Subcomponents

Cross-level components (parent to descendant)

Use useContext to pass values, similar to React's Context

Steps:

Create a context and use context.provider to associate the component that needs to pass the value to introduce context, and useContext to get the value

Parent component, in Father.tsx:

Parent Component

Child component, in Child.tsx:

Subcomponents

Grandchild component, in Sun.tsx:

Grandchild Component

Display effect

Display effect

This concludes this article on how to pass values ​​between react hooks components (using ts). For more information about passing values ​​between react hooks components, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • ReactHooks batch update state and get route parameters example analysis
  • React Hooks Detailed Explanation
  • Common pitfalls of using React Hooks
  • 30 minutes to give you a comprehensive understanding of React Hooks
  • How React Hooks Work
  • Common usage of hook in react
  • Introduction to 10 Hooks in React

<<:  Implementation of postcss-pxtorem mobile adaptation

>>:  Three ways of html+css layout (natural layout/flow layout/positioning layout)

Recommend

On good design

<br />For every ten thousand people who answ...

How to create a file system in a Linux partition or logical volume

Preface Learn to create a file system on your sys...

Linux checkup, understand your Linux status (network IO, disk, CPU, memory)

Table of contents 1. Core commands 2. Common comm...

React Router V6 Updates

Table of contents ReactRouterV6 Changes 1. <Sw...

Pitfalls based on MySQL default sorting rules

The default varchar type in MySQL is case insensi...

Analysis of 2 Token Reasons and Sample Code in Web Project Development

Table of contents question: There are 2 tokens in...

How to use Samba to build a shared file service on a Linux server

Recently, our small team needs to share a shared ...

React's context and props explained

Table of contents 1. context 1. Usage scenarios 2...

Implementation of Nginx configuration of multi-port and multi-domain name access

To deploy multiple sites on a server, you need to...

CSS Viewport Units for Fast Layout

CSS Viewport units have been around for the past ...

Web design must have purpose, ideas, thoughts and persistence

<br />Introduction: This idea came to me whe...

WeChat applet implements a simple dice game

This article shares the specific code of the WeCh...

Detailed explanation of slave_exec_mode parameter in MySQL

Today I accidentally saw the parameter slave_exec...

Design of pop-up windows and floating layers in web design

In the trend of gradual transition from tradition...

HeidiSQL tool to export and import MySQL data

Sometimes, in order to facilitate the export and ...