gpt4 book ai didi

javascript - 如何在 React 16.6.3 中调试 Lazy、Suspense 回退

转载 作者:行者123 更新时间:2023-12-03 00:37:16 24 4
gpt4 key购买 nike

我需要在 React 16.6.3 中调试 Lazy、Suspense 回退

需要更新加载 UI。

寻找最佳解决方案。

https://reactjs.org/blog/2018/10/23/react-v-16-6.html#reactlazy-code-splitting-with-suspense

最佳答案

import React, {lazy, Suspense} from 'react';
const OtherComponent = lazy(() => import('./OtherComponent'));

function MyComponent() {
return (
<Suspense fallback={<Fallback />}>
<OtherComponent />
</Suspense>
);
}

function Fallback() {
// debug it here to your heart's content
// same thing with "OtherComponent", debug it in component
return <div>Loading...</div>;
}

关于javascript - 如何在 React 16.6.3 中调试 Lazy、Suspense 回退,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53613404/

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