ReferenceError:React 应用程序中未使用 document.addEventListener 定义文档
我正在制作一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保组件已渲染。
因此你应该使用 useEffect Hook
You need to make sure that the component is rendered.
Therefore you should use the useEffect Hook