一个简单的问题,但不记得如何做到最好。我想要的是在运行代码节后自动将用户发送到另一个页面"/lecturer/marking/marking-section-two"

有没有一种方法可以在后备bean中执行此操作,而不会影响之前显示的ajax消息?

这是我正在运行的代码

public void markSectionOne() {
    //supposing the data in markSectionOne is filled...
    this.markingFacade.create(markSectionOne);
    this.setMessage("Mark Saved");
    //after saving...
    markSectionOne = new Marking();
    // now navigating to the next page
}


并且一旦运行,我想自动导航到新页面。

谢谢你们

最佳答案

您可以更改方法以返回一个字符串,该字符串将被解释为下一个导航结果。

public String markSectionOne() {
    // ... unrelevant code
    return "/lecturer/marking/marking-section-two";
}


如果该方法返回null,则JSF将停留在同一页面上。

09-03 19:11