zoukankan      html  css  js  c++  java
  • React 调用子组件的函数(函数)

    原文:React Hooks-Calling Child Component Function From Parent Component

    In this article we’re are assuming that you are somewhat familiar with React Hooks

    For calling Child Component function from parent component in hooks we are using React.forwardRef and React.useImperativeHandlehooks from React. Now let us know briefly about these two. What are they? How are they used? And the most important question, how are we going to use them? So let’s get started!

    React.forwardRef

    React.forwardRef creates a React component that forwards the ref attribute, which it receives, to another component below in the tree. So, in simple words forwardRef creates such a component which receives a ref attribute from its parent component and forwards it to the components down in the hierarchy.

     

    Arguments and return type: React calls this function with two arguments one is props and the other is ref. This returns a react node something like this.

    React.useImperativeHandle

    When we use useRef then instance value of component is generated with which ref is used, that instance value can be used to manipulate the DOM element, now React.useImperativeHandle customizes the instance value that is exposed to parent components. It is used with forward ref otherwise it will throw an error Cannot add property current, object is not extensible.

     

    Demo: Calling child function from parent in React Hooks

     

    So let us create a parent component first
    So we have created a component with a button to call the child function later on.

    Now, lets create a child component using forwardRef .
    A child component is ready along with a function in which it alerts a message “Child function called”, this function is named as showAlert with no arguments, using useImperativeHandle as we have discussed above about the useImperativeHandle and the forwardRef hooks in React.

    Our output is still the same because the child component is not rendered yet.

     

    Here comes the important part to call the child function.
    Now we will just render the child component in the parent and create a ref using React.useRefwith that the showAlert() function will be called.

    Child component is rendered and a ref is created using React.useRefnamed childRef. The button we created in parent component is now used to call the child component function childRef.current.showAlert();

    Conclusion

    As we know useRef() returns a mutable ref object whose .current property is initialized to the passed argument. The returned object will persist for the full lifetime of the component. Now, the function showAlert() is initialized in .current property of ref, which can be used anywhere in the component.

     

     

  • 相关阅读:
    iOS越狱系列(一):使用Reveal分析APP
    ios-异步消息同步问题-典型使用场景: 微信私信界面
    ios 消息跳转处理
    iOS开发UI篇—IOS CoreText.framework --- 基本用法
    IOS开发之实现App消息推送(最新)
    Thread 1: signal SIGABRT-内存管理的陋习
    别用symbolicatecrash来解析crash Log了by 风之枫
    通过崩溃trace来查找问题原因 .
    Xcode 6视图调试小贴士
    调试message send to deallocated instance问题
  • 原文地址:https://www.cnblogs.com/panpanwelcome/p/14417236.html
Copyright © 2011-2022 走看看