3

我正在使用 JSF,带有@ManagedBean注释并使用 Primefaces,我遇到了以下问题。

为什么“ onerror”没有被触发?异常只出现在我的控制台中。

登录.xhtml

<p:commandButton 
     value="teste" 
     action="#{loginBean.methodTest()}" 
     ajax="true" 
     immediate="false" 
     onerror="confirmation.show()" />

<p:dialog  
    appendToBody="true" 
    header="Atencao" 
    widgetVar="confirmation"  
    showEffect="bounce">  
     ...  
</p:dialog>  

豆豆

@ManagedBean(name = "loginBean") 
@SessionScoped  
public class LoginBean {

    public void methodTest() throws Exception {
        System.out.println("hi");       
        throw new Exception("Exception Test");           
    }
4

3 回答 3

7

这是预期的行为......

onerror : ajax 请求失败时执行的客户端回调。

在你的情况下,ajax请求根本没有失败,你抛出异常的事实与ajax失败无关

当 jsf 没有捕捉到你的异常、http 错误等时调用 onerror。异常!=错误。

阅读此线程以获取更多详细信息Ajax 引擎:onerror 不起作用(可能会为您提供一些提示...)

看下面关于f:ajax onerror的详细解释

于 2012-07-26T06:00:39.127 回答
4

onerror 属性查找您需要自己提供的 http 错误状态代码。

在你的第一个例子中

public void methodTest() {
  ExternalContext context = FacesContext.getCurrentInstance().getExternalContext();
  HttpServletResponse response = (HttpServletResponse) context.getResponse();
  response.setStatus(500); 

  System.out.println("hi");
}

应该管用。

于 2014-01-06T10:25:19.693 回答
0

谢谢大家,

我用一种不太好的方法解决了这个问题(但它解决了!),但我认为也许你可以帮助我改进这种方式。我想在我的“catch”中抛出一个 Ajax 错误,然后“onerror”(inted of oncomplete)接收它,然后打开对话框。

有没有可能??

成功的例子,方法很差:

    <p:panel id="PanelLogin" header="Login"  >    
      <h:form id="FormLogin"  >
        <br/>

          <h:panelGrid columns="2">
               <h:outputLabel for="user" value="Usuario:" />
               <p:inputText id="user" required="true"   value=" "  size="75"  />    

               <h:outputLabel for="pin" value="Senha:" />
               <p:password id="pin" required="true"  value=" " size="55" />                     
          </h:panelGrid>                                                

         <p:commandButton  styleClass="botaoLogin" value="OK" action="#{loginBean.checkLogin()}" ajax="true" oncomplete="if (#{loginBean.dialog}) confirmation.show()"  />

        </h:form>
</p:panel>

<p:dialog id="atencaoDialog" resizable="false" appendToBody="true" header="Atencao" widgetVar="confirmation"  height="85" width="300" showEffect="bounce">


 <div align="center">                   
   <p:messages id="outputTextAtencaoDialog"  autoUpdate="true" redisplay="false"   />  
 </div>                 


 <div style="text-align: center;">
  <p:commandButton id="okButtonAtencaoDialog" value="OK"  onclick="confirmation.hide();" />                         
 </div>
</p:dialog>

豆豆

 @ManagedBean(name = "loginBean")
    @SessionScoped
    public class LoginBean implements Serializable {

    private boolean dialog;

    ...

    public String checarAutenticacao() {

    ...

    try {

    ...

    return "/templantes/telaAplicacao.xhtml";

     } catch (Throwable e) {

       this.dialog = true;
       // try to throw Ajax error instead of this below ??            
       FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(e.getMessage()));
       return null;
     }
    }
于 2012-07-31T16:08:46.350 回答