作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
给定以下示例:
<h:inputText id="foo" size="#{configBean.size}" />
我想在 getter 方法中获取调用组件 foo
的 id
,以便我可以通过 的键从属性文件返回大小>foo.length
.
public int getSize() {
String componentId = "foo"; // Hardcoded, but I should be able to get the id somehow
int size = variableConfig.getSizeFor(componentId);
return size;
}
我怎样才能做到这一点?
最佳答案
从 JSF 2.0 开始,组件范围内有一个新的隐式 EL 变量:#{component}
,它引用当前的 UIComponent
。实例。在它的 getter 方法中有一个 getId()
你需要的。
所以你可以这样做:
<h:inputText id="foo" size="#{configBean.getSize(component.id)}" />
与
public int getSize(String componentId) {
return variableConfig.getSizeFor(componentId);
}
或者,您也可以将 variableConfig
设为 @ApplicationScoped
@ManagedBean
,这样您就可以:
<h:inputText id="foo" size="#{variableConfig.getSizeFor(component.id)}" />
(只要您想将参数传递给方法,就必须在 EL 中使用完整的方法名称而不是属性名称,所以只需 variableConfig.sizeFor(component.id)
就可以了'不起作用,或者您必须在类中将实际的 getSizeFor()
方法重命名为 sizeFor()
)
关于java - 如何在 getter 方法中获取调用组件的 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4469992/
我是一名优秀的程序员,十分优秀!