只需将其设为异步提交而不是同步提交即可。嵌套在一个<f:ajax>
.
<h:commandLink ...>
<f:ajax />
</h:commandLink>
如果您打算执行或渲染某些特定部分,请在 的execute
and/orrender
属性中相应地指定它们<f:ajax>
。它们都默认为@this
和@none
分别。例如
<h:commandLink ...>
<f:ajax execute="@form" render="@form" />
</h:commandLink>