-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用React.lazy预加载组件,import 导入组件会编译失败 #3529
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
|
Hello~ 您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
我试过用Taro,但是taro没有lazy函数,也没有Suspense,那是不是说明在taro中就无法使用lazy预加载了,会有其它方式吗 |
小程序没有预加载这个概念,所有包都是一次性加载完毕的。类似的东西叫分包。 |
这样啊,那我换种方式来实现,好的,非常感谢 |
@liweiSm 请问你最后的实现方案是怎样的呢,我正好也遇到这样的问题 |
小程序不能用预加载,换种方式实现吧,先import 组件进来,根据业务去判断加载 |
https://blog.csdn.net/qq_36977923/article/details/124153107 |
问题描述
微信小程序需要实现功能组件预加载,所以我用了 React.lazy() 但是打包编译的时候报错导致编译不通过,后来我换了一种方式(react-loadable)进行组件预加载,但是编译还是不通过,报错都是指向import,不知道是不是taro不支持代码中的import
下面是代码:
//
js "React.lazy(() => import('./components/preconditionPage'))" //
The text was updated successfully, but these errors were encountered: