我想了解jsf中此寻址模式之间的区别。
例如,我有这个xhtml结构:
<h:panelGroup id="parent">
<h:panelGroup id="child">
<!--
and some other components .
-->
</h:panelGroup>
</h:panelGroup>
此更新之间的区别是什么?
update="parent child"
update="parent:child"
update="parent,child"