使用 JavaScript 处理重复的 HTML 数据好不好?

发布于 2024-10-09 03:38:35 字数 45 浏览 2 评论 0原文

假设您有一个网站所有页面都相同的菜单。您应该使用客户端脚本还是服务器端脚本?

Let's say you have a menu that's the same for all pages of a website. Should you use client-side or server-side scripting for that?

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

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

发布评论

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

评论(2

秋日私语 2024-10-16 03:38:35

我会在服务器端生成它并缓存它。为什么要让每个浏览器都做一些工作?

您可以为每个页面生成/输出相同的响应,而不是让 javascript 进行额外的调用或导致菜单仅在脚本运行完毕后才出现。

I would generate it on the server side and cache it. Why make every browser do some work?

You can generate/output it with the same response for each page instead of having javascript make extra calls or cause the menu to only appear after the script finished running.

逆蝶 2024-10-16 03:38:35

如果是重复内容,我会通过

通过菜单,您还可以推迟脚本,以便它可以与用户访问网站要查看的主要内容并行下载。

If it's repetitive content, I would do client-side script loaded via <script src=...> so that the repetitive content is separately cacheable to reduce the amount your users have to download. One caveat though, if your site has to work without javascript enabled, you obviously have to do it server-side.

With menus, you can also make the script deferred, so that it can download in parallel to the main content that your users came to the site to see.

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