谁能告诉我如何从 Java 代码中获取即时属性值?我尝试了以下两种方式的属性:我的项目在 jsf 1.2
<h:inputText value="" immediate="true">
<f:attribute name="immediate" value="true"/>
<f:attribute name="testAttribute" value="true"/>
</h:inputText>
我可以在属性映射中看到“testAttribute”,但看不到“立即”属性。
if (UIComponentBase.getAttributes().containsKey("immediate")) {
this.immediate = (Boolean)comp.getAttributes().get("immediate");
}
getAttributes() 返回一个没有“立即”作为条目的属性映射。请提出另一种读取立即属性值的方法。