Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the way of passing values between react hooks components?

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces you what is the way of passing values between react hooks components, the content is very detailed, interested friends can refer to, hope to be helpful to you.

Father passes on son

Pass the value through props, and use useState to control the state value of state

In the parent component Father.tsx:

In the sub-component Child.tsx:

Display effect:

A son inherits his father.

In the same way as react, a child component passes in a callback function, receives the return value of the child component, and then updates the state of the parent component

Parent component, in Father.tsx:

Sub-components, in Child.tsx:

Display effect:

The optimized version of the child is passed on to the parent, which uses useCallback to store the functions that handle events.

Parent component, in Father.tsx:

Sub-components, in Child.tsx:

Cross-level components (parent and descendant)

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

Steps to use:

Create context to use context.provider to associate components that need to pass values to introduce context, and useContext and get the value

Parent component, in Father.tsx:

Sub-components, in Child.tsx:

Grandson component, in Sun.tsx:

Display effect

What is the way of passing values between react hooks components is shared here, I hope the above content can be of some help to you, you can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report