gpt4 book ai didi

reactjs - 在我的所有组件都安装在 React 中之前如何有一个加载屏幕

转载 作者:行者123 更新时间:2023-12-05 08:19:50 24 4
gpt4 key购买 nike

我的 React 应用程序没有任何 API 调用,我希望在安装所有组件(包括所有子组件)时有一个加载页面。我的页面确实需要几秒钟才能加载。

我遇到的问题是我不想使用 setTimeout,因为我的页面可以加载任意秒数。我只想显示一个加载屏幕,直到我的实际页面准备好显示。

最佳答案

试试 load像这样的事件(假设你在谈论 react Hook 实现。):-

const Component = () => {
const [isLoading, setIsLoading] = React.useState(true);

const handleLoading = () => {
setIsLoading(false);
}

useEffect(()=>{
window.addEventListener("load",handleLoading);
return () => window.removeEventListener("load",handleLoading);
},[])

return !isLoading ? (
{*/ your content here */}
):({*/ your loader */})

}

关于reactjs - 在我的所有组件都安装在 React 中之前如何有一个加载屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66136068/

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