gpt4 book ai didi

javascript - Primefaces javascript 延迟解析

转载 作者:行者123 更新时间:2023-11-28 01:44:17 26 4
gpt4 key购买 nike

从 PageSpeed Insights 可以看出,Primefaces 4.0 在页面加载期间会产生大量开销:

**605.3KiB of JavaScript is parsed during initial page load. Defer parsing JavaScript to reduce blocking of page rendering.**
http://localhost:8888/.../primefaces.js.xhtml?... (219.5KiB)
http://localhost:8888/.../jquery-plugins.js.xhtml?... (191.8KiB)
http://localhost:8888/.../jquery.js.xhtml?... (95.3KiB)
http://localhost:8888/.../tooltip.js.xhtml?... (34.5KiB)
http://localhost:8888/.../jsf.js.xhtml?... (25.4KiB)
http://localhost:8888/.../primefaces-extensions.js.xhtml?... (19.7KiB)
http://localhost:8888/.../watermark.js.xhtml?... (4.7KiB)
http://localhost:8888/.../hotkey.js.xhtml?... (1.2KiB)

知道如何将这些第 3 方 javascript 文件设置为位于正文部分的底部而不是头部或使用 defer/async 参数吗? Javascript 加载器在这种情况下没有帮助,因为它们来自 JSF 渲染器。我还尝试为 PreRenderView ( Best way for JSF to defer parsing of JavaScript? ) 创建一个监听器,但这没有成功。还有其他选项可以解决这个问题吗?感谢您的帮助!

最佳答案

我移动了脚本以使用以下代码片段:

public class ScriptValidateListener implements SystemEventListener {

@Override
public void processEvent(SystemEvent event) throws AbortProcessingException {
UIViewRoot root = (UIViewRoot) event.getSource();
FacesContext ctx = FacesContext.getCurrentInstance();
List<UIComponent> resources = root.getComponentResources(ctx, "HEAD");
for (UIComponent r : resources) {
String name = (String) r.getAttributes().get("name");
if (name == null) {
continue;
}

if (name.contains(".js")) {
root.removeComponentResource(ctx, r, "HEAD");
root.addComponentResource(ctx, r, "BODY");
}
}
}

@Override
public boolean isListenerForSource(Object source) {
return (source instanceof UIViewRoot);
}
}

这会将所有 JavaScript 代码从 HEAD 移动到 BODY 的末尾。但。 Primefaces 存在一个问题,即呈现的组件将尝试访问 JQuery ($.) 或 PrimeFaces javascript 函数,这将破坏页面上的所有 ajax 功能。可能我需要决定移动哪些脚本和不移动哪些脚本。另外,作为监听器的一部分,我需要在 faces-config.xml 中定义以下内容才能使其正常工作:

<application>
<system-event-listener>
<system-event-listener-class>com.example.listener.ScriptValidateListener</system-event-listener-class>
<system-event-class>javax.faces.event.PreRenderViewEvent</system-event-class>
</system-event-listener>
</application>

关于javascript - Primefaces javascript 延迟解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20514987/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com