ReferenceError:React 应用程序中未使用 document.addEventListener 定义文档

发布于 2025-01-09 22:19:35 字数 382 浏览 0 评论 0原文

我正在制作一个 React 应用程序,并且尝试使用浏览器 api 来检测用户是否位于应用程序选项卡或另一个选项卡上。

document.addEventListener("visibilitychange", (event) => {
  if (document.visibilityState == "visible") {
    return;
  } else {
    console.log('user is not in this tab')
  }
}

我收到此错误:

ReferenceError: document is not defined

这是因为我从 React 应用程序调用文档吗?

I am making a React app and I am trying to use the browser api to detect if a user is on the app tab or another one.

document.addEventListener("visibilitychange", (event) => {
  if (document.visibilityState == "visible") {
    return;
  } else {
    console.log('user is not in this tab')
  }
}

I am getting this error:

ReferenceError: document is not defined

Is this because I am calling document from a React app?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉城 2025-01-16 22:19:35

您需要确保组件已渲染。
因此你应该使用 useEffect Hook

You need to make sure that the component is rendered.
Therefore you should use the useEffect Hook

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文