开发者问题收集

ref.current 始终未定义?

2020-10-27
3241

我需要使用功能组件,因此不能直接使用 useRef。这是我的代码:

import React,{forwardRef,useImperativeHandle,useRef,useEffect} from "react";
import "./style.css";

export default function App() {


  const ref_ = useRef();

useEffect(()=>{
    console.log(ref_)

})
  console.log(ref_)

  return (
    <div>
         <Demo/>
    </div>
  );
}

const Demo = forwardRef((props,ref)=>{

useImperativeHandle(ref,()=>({
  toggle(){
    console.log(123);
  }
}))

  return(
    <div ref={ref}>1234</div>

  )
})

在线代码: https://stackblitz.com/edit/forwardref-z68drh?file=src/App.js

我想在父组件上触发子组件的功能...有人能帮助我吗?

1个回答

您需要将 ref 本身传递给 Demo 组件:

function App() {
  const ref = useRef();
  return <Demo ref={ref}/>;
}

然后,由于 useImperativeHandle ,您可以使用 ref.current.toggle()

https://stackblitz.com/edit/forwardref-z68drh-epz2xf?file=src/App.js

Dennis Vash
2020-10-27