【发布时间】:2013-11-18 03:17:42
【问题描述】:
让我们有一些 facelet 1.xhtml 包含
<h:inputText id="prop" value="#{MyBean.myProperty}"/>
和包含
的 facelet2.xhtml
<h:inputText id="prop" value="${MyBean.myProperty}"/>
引用官方教程:
Immediate evaluation means that the expression is evaluated and the result returned as soon as the page is first rendered.
我不明白立即表达式在哪个特定阶段进行评估?在Render Response 阶段或Update model values 或Apply request 还是什么?
【问题讨论】: