将字符串参数传递给xhtml中的函数或方法

问题描述 投票:4回答:1

我有一个按钮,我想根据函数返回true或false来呈现。

HTML:

<p:commandButton type="button" rendered="#{myBean.checkPermission(1)}" value="Create"  />

和支持豆:

public boolean checkPermission(String actionKey) {
...
}

问题是,当我使用数字参数调用checkPermission时

#{myBean.checkPermission(1)}

它工作正常,但我传递一个字符串作为参数,即

#{myBean.checkPermission(ABC)}

,我得到一个空字符串传递。知道为什么吗?

jsf el
1个回答
8
投票

你没有传递String,而不是EL无法理解的ABC变量,你的方法将获得null值(感谢BalusC对我的正确)。你应该添加撇号(')告诉你传递String的框架:

<p:commandButton type="button" rendered="#{myBean.checkPermission('ABC')}"
    value="Create" />
© www.soinside.com 2019 - 2024. All rights reserved.