码迷,mamicode.com
首页 > 其他好文 > 详细

react hooks 之 useRef, useImperativeHandle

时间:2020-06-08 19:04:23      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:reac   code   call   amp   val   用法   null   cli   setvalue   

1  用法如下:

// 子组件 
const ChildCmp =(props, ref) => {
  const [value, setValue] = useState(‘‘);

  const click = useCallback(() => {
       console.log(value)
    }, [value])  

// 将click方法暴露出去。父组件可以通过ref获取到
 useImperativeHandle(ref, () => {
    return {clickfun: click}
 })

   return <>123</>  
}
// 父组件 
const ParentCmp =(props) => {
  const [value, setValue] = useState(‘‘);

  const childCmpRef= useRef(null);


  const click = useCallback(() => {
       childCmpRef&&childCmpRef.current&&childCmpRef.current.clickfun&&childCmpRef.current.clickfun()

    }, [value])  

// 将click方法暴露出去。父组件可以通过ref获取到
 useImperativeHandle(ref, () => {
    return {clickfun: click}
 })

   return <>
   <ChildCmp ref={childCmpRef}/>
   </>  
}

 

react hooks 之 useRef, useImperativeHandle

标签:reac   code   call   amp   val   用法   null   cli   setvalue   

原文地址:https://www.cnblogs.com/lisiyang/p/13067287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!