无法删除子组件中 React 中的事件侦听器

发布于 2025-01-20 17:06:36 字数 543 浏览 0 评论 0原文

我有一个父级 React 组件,它具有添加和删除侦听器的方法。它看起来像这样:

const onKeyDown = (e: KeyboardEvent) => {
    //Some stuff
    e.preventDefault();
};

const addEventListeners = () => {
    document.addEventListener("keydown", onKeyDown);
};

const removeEventListeners = () => {
    document.removeEventListener("keydown", onKeyDown);
};

我将 addEventListeners 和 removeEventListeners 传递给一些子组件,因为我希望它们添加和删除侦听器。问题是只有 addEventListeners 有效,同时removeEventListeners 似乎不起作用。 addEventListeners 执行的次数与removeEventListeners 执行的次数一样多。

I have a parent react component that has methods to add and remove listeners. It looks like this:

const onKeyDown = (e: KeyboardEvent) => {
    //Some stuff
    e.preventDefault();
};

const addEventListeners = () => {
    document.addEventListener("keydown", onKeyDown);
};

const removeEventListeners = () => {
    document.removeEventListener("keydown", onKeyDown);
};

I pass down both addEventListeners and removeEventListeners to some children components because I want them to add and remove listeners. The problem is that only addEventListeners works, meanwhile removeEventListeners doesn't seem to work. addEventListeners is executed as many times as removeEventListeners.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文