gpt4 book ai didi

jsf - 如何将 bool 属性绑定(bind)到呈现的属性?

转载 作者:行者123 更新时间:2023-12-04 17:03:40 25 4
gpt4 key购买 nike

我正在使用 boolean JSF 托管 bean 中的属性,根据它的值,我必须在 facelet 上呈现命令链接。但问题是 facelets 显示此错误:

Property 'isPlayButtonEnabled' is not found on my backing bean



所以我通过将属性的数据类型从 boolean 更改来测试代码至 String .然后facelets没有显示任何错误。但是命令链接组件没有在 View 中呈现。这是如何引起的,我该如何解决?

最佳答案

Property 'isPlayButtonEnabled' is not found on my backing bean



删除 is EL 表达式中的前缀。它现在正在寻找 isIsPlayButtonEnabled()方法。这应该这样做:
<h:commandButton rendered="#{bean.playButtonEnabled}" />


public boolean isPlayButtonEnabled() {
return playButtonEnabled;
}

关于jsf - 如何将 bool 属性绑定(bind)到呈现的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8522422/

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