gpt4 book ai didi

javascript - useEffect deps 中的 ref.current 在预期时不起作用(与 useCallback ref 相比)

转载 作者:行者123 更新时间:2023-12-01 16:17:54 24 4
gpt4 key购买 nike

Popular 组件呈现 Modal,但它是否可见取决于 modal.isVisible bool 状态。我的目标是附加一个鼠标事件监听器和一个处理程序,以在单击外部时关闭模态。我尝试使用 useRef 来做到这一点,并将 ref 传递给模态对话框,以便捕获事件并检查是否使用 event.target.contains 在外部单击。

问题是,在第一次呈现时,我不想将“鼠标按下”处理程序分配给文档,但只有当定义了 wrapper && wrapper.current 并且它在模态对话框之外时。在第一次渲染时,我可以看到效果按预期运行,但是当通过设置 isVisible -> true 扩展模态时,ref.current 应该已经改变,但是effect 不会再次运行,如果我关闭 Modal 它会再次运行,然后它会像 expecetd 一样工作。 ref.current 更改它未反射(reflect)在效果中,即使效果应该在 DOM 更新后运行。这是为什么?

const Modal = ({ isVisible, repo, onClose }) => {
const wrapper = useRef();
console.count('render modal');

const escapeHandler = useCallback(({ key }) => {
if (key == 'Escape') onClose();
}, [onClose]);

useEffect(() => {
document.addEventListener('keydown', escapeHandler);
return () => document.removeEventListener('keydown', escapeHandler);
}, []);

useEffect(() => {
// runs after first render, but when setting isVisible to true and causing a rerender
// the effect doesn't run again despite ref.current is changed to <div>
// only after closing the Modal with Escape, it will work as expected, why?
console.count('effect modal');
console.log(wrapper.current);
}, [wrapper.current]);

return !isVisible ? null : (
<div className="modal">
<div className="modal-dialog" ref={wrapper}>
<span className="modal-close" onClick={onClose}>&times;</span>
{repo && <pre>{JSON.stringify(repo, null, 4)}</pre>}
</div>
</div>
);
};

const Popular = () => {
const [modal, setModal] = useState({ isVisible: false, repo: null });

const closeModal = useCallback(() => {
setModal({ isVisible: false, repo: null });
}, []);

return <Modal onClose={closeModal} {...modal} />
};

但是,在阅读文档后,如果我使用 useCallback 并将其作为 ref 传递,它会像预期的那样工作,为什么?

const wrapper = useCallback(node => {
// works as expected every time the ref changes
console.log(node);
}, []);

如果问题的措辞有点不清楚,请告诉我,我会尽量解释得更好一些

最佳答案

我不太确定为什么尽管将 wrapper.current 添加到依赖项中,并且组件由于 prop 更改而重新渲染,但 useEffect 不是第一次运行而是在所有后续 isVisible 状态时调用变化。这可能是 react 中的错误。也许你可以为此在 reactjs 上创建一个问题。


也就是说,

但是,您的所有其他观察结果都是合理的。每次都使用 useCallback 调用该函数,因为这样您就可以使用 ref 回调模式分配 ref,其中 ref 的分配方式类似于 ref={node => wrapper.current = node}

这样,每次您的可见状态为真时,都会调用 ref 回调,如果您像这样使用它,就会调用 useCallback 函数

const modelRef= useRef(null);
const wrapper = useCallback((node) => {
modelRef.current = node;
console.log(node);
}, [])

...

<div ref={wrapper} />

但是,如果您将 isVisible 添加为 useEffect 的依赖项而不是 wrapper.current

,则上述 useEffect 代码将正确且确定地运行
useEffect(() => {
console.count('effect modal');
console.log(wrapper.current);
}, [isVisible])

这也是一个正确的方法,因为只有当 isVisible 标志改变时你的 ref 才会改变,并且取决于可变值作为 useEffect 不是一个很好的解决方案,因为可能会出现一些突变没有同时重新渲染的情况,在这种情况下 useEffect 根本不会运行

关于javascript - useEffect deps 中的 ref.current 在预期时不起作用(与 useCallback ref 相比),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61611208/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com