Skip to content
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

Closed
liweiSm opened this issue Jun 25, 2019 · 9 comments
Closed

使用React.lazy预加载组件,import 导入组件会编译失败 #3529

liweiSm opened this issue Jun 25, 2019 · 9 comments
Labels
question Further information is requested

Comments

@liweiSm
Copy link

liweiSm commented Jun 25, 2019

问题描述
微信小程序需要实现功能组件预加载,所以我用了 React.lazy() 但是打包编译的时候报错导致编译不通过,后来我换了一种方式(react-loadable)进行组件预加载,但是编译还是不通过,报错都是指向import,不知道是不是taro不支持代码中的import

image

下面是代码:
// js "React.lazy(() => import('./components/preconditionPage'))" //


**期望行为**
希望能告知是什么问题,另外如果是平台的问题能不能有其它好的替代方案实现预加载功能

**系统信息**
 - 操作系统:  Windows 10
 - Taro 版本 1.3.2
 - Node.js 版本 11.13.0
 - 报错平台 weapp

**补充信息**
[可选]
[根据你的调查研究,出现这个问题的原因可能在哪里?]
@taro-bot
Copy link

taro-bot bot commented Jun 25, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@yuche
Copy link
Contributor

yuche commented Jun 25, 2019

  1. 不使用支持 React 的方法,你只能从 Taro 对象下面取;
  2. 需要遵循 Taro 组件规范的第三方组件才能使用

@yuche yuche added answered question Further information is requested labels Jun 25, 2019
@taro-bot
Copy link

taro-bot bot commented Jun 25, 2019

Hello~

您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@liweiSm
Copy link
Author

liweiSm commented Jun 25, 2019

  1. 不使用支持React的方法,你只能从Taro对象下面取;
  2. 需要遵循Taro组件规范的第三方组件才能使用

我试过用Taro,但是taro没有lazy函数,也没有Suspense,那是不是说明在taro中就无法使用lazy预加载了,会有其它方式吗

@yuche
Copy link
Contributor

yuche commented Jun 25, 2019

小程序没有预加载这个概念,所有包都是一次性加载完毕的。类似的东西叫分包。

@liweiSm
Copy link
Author

liweiSm commented Jun 25, 2019

小程序没有预加载这个概念,所有包都是一次性加载完毕的。类似的东西叫分包。

这样啊,那我换种方式来实现,好的,非常感谢

@seawind8888
Copy link

@liweiSm 请问你最后的实现方案是怎样的呢,我正好也遇到这样的问题

@liweiSm
Copy link
Author

liweiSm commented Feb 6, 2020

@liweiSm 请问你最后的实现方案是怎样的呢,我正好也遇到这样的问题

小程序不能用预加载,换种方式实现吧,先import 组件进来,根据业务去判断加载

@Derekgogo
Copy link

@liweiSm 请问你最后的实现方案是怎样的呢,我正好也遇到这样的问题

https://blog.csdn.net/qq_36977923/article/details/124153107
我是这么做的

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants