web-dev-qa-db-ja.com

p:commandLinkが新しいウィンドウ/タブでページを開けません

別のウィンドウ/タブで新しいページを開き、バッキングBeanからのメッセージを表示するためのリンクを作成しようとしていますが、失敗しました、なぜだろうか?

ここに私のxhtmlファイルがあります:

<html:composition xmlns="http://www.w3.org/1999/xhtml"
  xmlns:f="http://Java.Sun.com/jsf/core"
  xmlns:h="http://Java.Sun.com/jsf/html"
  xmlns:p="http://primefaces.org/ui"
  xmlns:c="http://Java.Sun.com/jsp/jstl/core"
  xmlns:ui="http://Java.Sun.com/jsf/facelets">
  <h:body>
    <h:form id="form66">
    <p:commandLink actionListener="#{testing.getMessage}" action="msg.xhtml" target="_blank">get Msg</p:commandLink>
    </h:form>
  </h:body>
</html>

これが私のMsg.xhtmlページです

<HTML xmlns="http://www.w3.org/1999/xhtml"
  xmlns:f="http://Java.Sun.com/jsf/core"
  xmlns:h="http://Java.Sun.com/jsf/html"
  xmlns:p="http://primefaces.org/ui"
  xmlns:ui="http://Java.Sun.com/jsf/facelets">
  <h:head>
    <title>testing</title>
  </h:head>
  <h:body>
    <div class="div">
      <p:panel>
        <f:facet name="header">
          testing
        </f:facet>
        <div class="paddingForPanel">
          <h:outputText value="#{testing.msg}" escape="false"/>             
        </div>
      </p:panel>            
    </div>
  </h:body>
</HTML>

ここに私のテストです。Java

public void getMessage() {      
    this.msg = "haha";
}

private String msg;
public String getMsg() {
    return msg;
}
public void setMsg(String msg) {
    this.msg = msg;
}


上記のコードは新しいタブ/ウィンドウを開けません、私は以下のようにしようとします、新しいタブで新しいページを開くことは成功しますが、メッセージが空です、デバッグすると、リスナーを呼び出して成功しましたgetMessage、msg.xhtmlページでmsgが空である理由を知っているのだろうか?前もって感謝します....

<p:commandLink actionListener="#{testing.getMessage}" oncomplete="window.open('msg.xhtml')">broadcast Msg</p:commandLink>
20
heng heng

<p:commandLink>にはいくつかのAJAX問題があります。代わりに<h:commandLink>を使用してください。

 <h:commandLink actionListener="#{testing.printMessage}" action="/Msg.html" target="_blank">get Msg</h:commandLink>

<p:commandLink><h:commandLink>に変更しました。コードは正常に機能しています。

19
neni

どちらも機能していないため、primefaces ajaxには問題はありません。 p:commandLinkのターゲット属性の問題が機能しない...

<p:commandLink value="New Window" ajax="false" target="_blank" action="test"/>

<p:commandLink value="New Window" target="_blank" action="test"/>

使用する必要があります

<h:commandLink value="New Window" target="_blank" action="test"/>
5
Az.MaYo

私はこのようにします:

<p:commandLink id="link" actionListener="#{testing.getMessage}" 
    oncomplete="popupwindow('msg.xhtml', 'newwindow');" >  
    <h:outputText value="broadcast Msg" />
</p:commandLink>

Javascriptを使用する場合:

<script type="text/javascript">    
function popupwindow(url, title) {      
    window.open(url , title, "toolbar=no, scrollbars=yes, resizable=yes, top=170, left=170, width=800, height=600");        
}    
</script>

この例では、新しいウィンドウを開きます。

3
CarlosLeo

Remotecommandを使用している場合、このようにすることができます

<p:remoteCommand name="lookAndBookNewTab"
     process="@this" action="#{lookAndBookMB.onPageLoadForNewTab()}"
     rendered="#currentUserManager.
     hasPermission('LookAndBook','View')}"             update=":messageForm:growl" />

そして私のjavascript:

<script> 
    if(event.ctrlKey &amp;&amp; event.shiftKey &amp;&amp; event.keyCode == 119) {
     lookAndBookNewTab(); 
    event.preventDefault();
</script>

ServerSideアクションメソッド:

public String onPageLoadForNewTab(){
    HttpServletRequest req = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest(); String url = req.getRequestURL().toString();
        url=(url.substring(0, url.length() - req.getRequestURI().length()) + req.getContextPath() + "/"); url=url+navigationpagename+".jsf"; RequestContext.getCurrentInstance().
        execute("window.open('"+url+"','_blank')");** 
    return ""; }
1
Kumar Anand

あなたのコントローラーコードでこれを試してください、それは私のために完璧に働きました。

HttpServletResponse res = (HttpServletResponse) FacesContext.getCurrentInstance().getExternalContext().getResponse();
            HttpServletRequest req = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();
            String uri = req.getRequestURI();
            res.getWriter().println("<script>window.open('" + myUrl + "','_blank', 'location=yes,height=600,width=800,scrollbars=yes,status=yes'); window.parent.location.href= '"+uri+"';</script>");
            FacesContext.getCurrentInstance().responseComplete();   
0
Pradip Dudhani