<html xmlns:h="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:o="http://omnifaces.org/ui">
<o:form includeViewParams="true">
<h:commandButton value="Home" action="/index?faces-redirect=true"/>
<p:dataTable>
</p:dataTable>
</o:form>
h:commandButton 在 o:form 下不起作用。当我单击它时,它仍然在同一页面上。但是当我更改为 h:form 时,它可以工作。不过,我需要为 includeViewParams 使用 o:form。有什么办法可以解决这个问题吗?