缩短 Facebook 应用加载时间

发布于 2024-12-29 20:16:04 字数 89 浏览 1 评论 0原文

我有一个 Facebook 新闻应用程序。在应用程序中加载网页需要一些时间。但像《华盛顿邮报》这样的应用程序加载页面的速度要快得多。如何让我的应用程序加载速度更快?

I have a Facebook news app. It takes a bit of time to load the webpage in the app. But an app like Washington post loads the page much faster. How do I make my app load faster?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

客…行舟 2025-01-05 20:16:04

您可以执行以下操作:

  • 缩小所有 JavaScript 和 CSS 文件。
  • 确保使用的所有图像尽可能小(谈论文件的大小)
  • 考虑将图像压缩为 “精灵” 文件。
  • 确保在页面加载之前没有进行任何不必要的 API 调用
  • 重构代码并检查代码逻辑。
  • 使用 google chrome 的“网络”面板来监控正在加载的资源以及他们需要多长时间。
  • 如果您使用 jQuery - 考虑 加载来自 Google CDN 的库

说“像华盛顿邮报这样的应用程序加载页面速度非常快......”对任何人都没有帮助 - 谁知道有多少开发人员以及他们在应用程序中投入了多少时间。您所能做的就是利用您所拥有的工具和资源,尽力做到最好......

如果您发现应用程序存在特定问题,导致速度变慢,并且您仍然不知道如何缩短加载时间 - 请返回此处并编辑您的问题以包含有关该特定问题的更多信息。

快乐编码!

Some things you could do are :

  • Minify all JavaScript and CSS files.
  • Ensure all images used are as small as possible ( talking about the size of the file )
  • Consider condensing your images into a "sprite" file.
  • Make sure you are not making any unnecessary API calls before the page loads
  • Refactor your code and review your code logic.
  • Use google chrome's "network" panel to monitor what resources are being loaded and how long they are taking.
  • If you are using jQuery - consider loading the libraries from Google's CDN

Saying that "app like Washington post loads the page very quick..." doesn't help anyone - who knows how many developers and how much time they put into their application. All you can do is make it the best that you can with the tools and resources that you have at your disposal...

If you find a specific issue with your application that you see is slowing things down and you still do not know how to improve the load time - come back here and edit your question to contain more information about that specific problem.

Happy coding!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文