我在下面有以下两页。
hello.xhtml,由 .../hello.jsf url 呈现。
<h:form>
<h:commandButton id="submit" value="Submit" action="response"/>
</h:form>
response.xhtml,由 .../response.jsf url 呈现。
<h:form>
<h:commandButton id="back" value="Back" action="hello"/>
</h:form>
单击提交按钮时,hello 页面被重定向到响应页面,但 url 保持不变,即 url 仍然是 .../hello.jsf。
单击提交按钮后,我希望 url 为.../response.jsf 。请问有什么帮助吗?
非常感谢!