这是我使用的代码:
请求.jsf
<h:form>
<!-- form inputs ... -->
<h:commandButton id="btnStart" value="START" action="#{bean.handleForm}">
<f:ajax execute="@form" render="message" />
</h:commandButton>
</h:form>
当我单击btnStart
按钮时,我的 bean 提交并正确处理了表单。不幸的是,浏览器 url 栏仍然显示http://myhost.com/request.jsf
,而内容显示返回的结果#{bean.handleForm}
。
如何正确更新网址栏?