使用React的forwardRef可以实现将ref从父组件传递到子组件,实现组件间的引用传递。下面是一个简单的例子:
import React, { useRef, forwardRef, useImperativeHandle } from 'react';
const ChildComponent = forwardRef((props, ref) => {
const inputRef = useRef(null);
useImperativeHandle(ref, () => ({
focus: () => {
inputRef.current.focus();
}
}));
return <input ref={inputRef} />;
});
const ParentComponent = () => {
const childRef = useRef(null);
const handleClick = () => {
childRef.current.focus();
};
return (
<div>
<ChildComponent ref={childRef} />
<button onClick={handleClick}>Focus Input</button>
</div>
);
};
export default ParentComponent;
在上面的例子中,通过forwardRef将ref从ParentComponent传递到ChildComponent,然后在ChildComponent中使用useImperativeHandle来定义一个focus方法,以便在ParentComponent中调用该方法。最后,在ParentComponent中通过调用childRef.current.focus()来触发ChildComponent中的focus方法。这样就实现了组件间的引用传递。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。