Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很感兴趣如何使用 AJAX 在 JSF 页面之间切换?就我而言,我有大约 10 个 JSF 页面,我可以像普通的 html 页面一样浏览它们。我想完全实现 AJAX。有没有可能的解决方案?
将 "?faces-redirect=true" 添加到您的操作方法的返回值中。
例如:
String aListener(){ return "home.xhtml?faces-redirect=true"; }