请问一下为什么lazy不生效
来源:9-8 异步组件及withRouter路由方法的使用
qq_陌_45
2020-09-04
react版本16.8.6
1.按照官网教程代码分割使用lazy, Suspense, 发现浏览器并没有给我产生异步的chunks
import React, { Suspense } from ‘react’;
const OtherComponent = React.lazy(() => import(’./OtherComponent’));
function MyComponent() {
return (
<Suspense fallback={
Loading…
}>);
}
写回答
1回答
-
Dell
2020-09-05
是无法展示?还是异步加载有问题?
022020-09-12
相似问题