JSF 2.2 表单提交,重新加载页面=重新提交?

问题描述 投票:0回答:2
forms jsf jsf-2 facelets
2个回答
3
投票

问题确实出在重新提交表格上。但浏览器(opera)没有显示警报。

我通过添加修复了它

  FacesContext.getCurrentInstance().getExternalContext().redirect("index.xhtml");

在我的职能中


0
投票

尝试通过ajax提交:

<h:commandButton value="click" actionListener="#{example.NewExample()}">
  <f:ajax />
</h:commandButton>

您可能需要渲染一些组件。

© www.soinside.com 2019 - 2024. All rights reserved.