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>
вот мой test.java
public void getMessage() {
this.msg = "haha";
}
private String msg;
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
приведенный выше код не позволяет открыть новую вкладку/окно, я пытаюсь сделать это, как показано ниже, успешно открыть новую страницу на новой вкладке, но msg пуст, когда я отлаживаю, он получил успешный вызов listenner getMessage, мне интересно знать почему msg пуст на странице msg.xhtml?
Спасибо заранее.
<p:commandLink actionListener="#{testing.getMessage}" oncomplete="window.open('msg.xhtml')">broadcast Msg</p:commandLink>
Ответы
Ответ 1
<p:commandLink>
имеет некоторые проблемы ajax, вместо этого используйте <h:commandLink>
.
<h:commandLink actionListener="#{testing.printMessage}" action="/Msg.html" target="_blank">get Msg</h:commandLink>
изменен <p:commandLink>
на <h:commandLink>
, и ваш код работает нормально.
Ответ 2
Оба не работают, поэтому проблема не в арифметических арифметиках ajax. Проблема в целевом атрибуте p: commandLink не работает...
<p:commandLink value="New Window" ajax="false" target="_blank" action="test"/>
<p:commandLink value="New Window" target="_blank" action="test"/>
SO, мы должны использовать
<h:commandLink value="New Window" target="_blank" action="test"/>
Ответ 3
Я делаю это так:
<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>
В этом примере вы открываете новое окно, надеетесь, что это поможет!
Ответ 4
Если вы используете remotecommand, вы можете сделать это следующим образом:
<p:remoteCommand name="lookAndBookNewTab"
process="@this" action="#{lookAndBookMB.onPageLoadForNewTab()}"
rendered="#currentUserManager.
hasPermission('LookAndBook','View')}" update=":messageForm:growl" />
И мой javascript:
<script>
if(event.ctrlKey && event.shiftKey && 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 ""; }
Ответ 5
Попробуйте это в своем коде контроллера, это сработало для меня отлично.
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();
Ответ 6
как это,
<h:link target="_blank" value="Other page" outcome="your url"></h:link>
Удачи!
Ответ 7
как это
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
<h:outputStylesheet library="base" name='jquery-ui-1.8.16.custom.css' />
</h:head>
<span style="background-color: rgb(192, 192, 192);">
<h:form target="_blank">
<p:commandButton value="Run" action="#{bean.createReport}" />
</h:form>
</span>
</html>
см.: введите ссылку здесь