延迟加载如何用于已编译的 Ionic 应用程序?
How does Lazy Loading work for compiled Ionic apps?
我了解延迟加载在 Web 中的优势...但是如果我的应用程序仅用于编译为 Android 和 iOs,那么使用它有什么优势吗?
与 Angular 一样,延迟加载让开发人员仅在用户需要时才加载应用程序模块。翻译:实施延迟加载,您的应用程序性能得到显着提升。我建议始终阅读 Josh Morony 的文章 like this。
but is there any advantage to using it if my app is only going to be
used compiled to Android and iOS?
没有区别。它的行为与网络应用程序相同,因为 Ionic 最后使用 webview。即使使用本机或编译的应用程序,您也将获得延迟加载的所有好处。例如启动时的巨大性能提升等
我了解延迟加载在 Web 中的优势...但是如果我的应用程序仅用于编译为 Android 和 iOs,那么使用它有什么优势吗?
与 Angular 一样,延迟加载让开发人员仅在用户需要时才加载应用程序模块。翻译:实施延迟加载,您的应用程序性能得到显着提升。我建议始终阅读 Josh Morony 的文章 like this。
but is there any advantage to using it if my app is only going to be used compiled to Android and iOS?
没有区别。它的行为与网络应用程序相同,因为 Ionic 最后使用 webview。即使使用本机或编译的应用程序,您也将获得延迟加载的所有好处。例如启动时的巨大性能提升等