gpt4 book ai didi

jsf - Primefaces

or

. 我应该使用什么来响应?

转载 作者:行者123 更新时间:2023-12-05 02:07:56 25 4
gpt4 key购买 nike

使用 Primefaces 设计良好的响应式页面的最佳方式是什么?在 Primefaces 展示中我可以看到两个标签,div 和 outputpanel 之间有什么区别?对于专业页面,什么是最佳选择?也许面板网格?我需要专业的观点。

最佳答案

来自 PrimeFaces 文档:https://primefaces.github.io/primefaces/8_0/#/core/performance

尝试在 JSF 标签上使用 HTML

  1. 如果您不需要转义或转换器等其他功能,请特别避免使用 h:outputText。只需在 XHTML 中使用 EL 表达式即可。

  2. 这同样适用于一些其他组件,例如 p:outputPanel。只需使用普通的 div。如果您需要使其可更新,您仍然可以使用“直通元素”<div jsf:id="...">...</div>jsf:rendered .例如:

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:jsf="http://xmlns.jcp.org/jsf">
<div class="userDetails" jsf:rendered="#{sessionController.authorized}">
Name: #{cc.attrs.value.name}
Details: #{cc.attrs.value.details}
</div>
</html>

关于jsf - Primefaces <p :outputPanel/> or <div/>. 我应该使用什么来响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61407434/

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