我试图通过点击JSF中的按钮<p:commandButton>
来打开一个新的弹出窗口。
这是我的代码,
<h:inputText style="width:42%"value="#{xxbean.values}" rendered="#{xxBean.yy == true}"
onblur="cc;" maxlength="6">
</h:inputText>
<p:commandButton value="FindPhone" id="xxne" actionListener="#{xx.findPhoneSearch}"
oncomplete="window.open('#{xx.wpUrl}', '_blank')"
rendered="#{xx.editCmdActionflg == true }" async="false">
<f:param name="pmid" value="#{xx.Details.uid}"/>
</p:commandButton>
我正在调用方法findPhoneSearch,就像上面命令按钮中actionlistener中给出的一样,
这是findPhoneSearch方法,
public void FindphoneSearch(ActionEvent event) {
String param = "";
Map<String, String> params = FacesContext.getCurrentInstance()
.getExternalContext().getRequestParameterMap();
String expression = "^[a-z0-9]+$";
Pattern pattern = Pattern.compile(expression);
if (params.get("pmid") != null) {
String t_pmid = params.get("pmid");
Matcher matcher = pattern.matcher(t_pmid);
if (matcher.matches()) {
param = "/cgi-bin/Findphones.pl?id=" + t_pmid.trim();
}
}
if (params.get("lpid") != null) {
String t_lpid = params.get("lpid");
Matcher matcher = pattern.matcher(t_lpid);
if (matcher.matches()) {
param = "/cgi-bin/Findphones.pl?id=" + t_lpid.trim();
}
}
String findphoneUrl= "http://Findphone.com" + param;
wpUrl = findphoneUrl;
}
我的问题是窗口打开空白而没有传递我正在框架的网址,这是在wpurl中分配的。
请帮我解决此问题。
答案 0 :(得分:3)
当首次显示带有按钮的页面时,而不是在按下按钮后,将评估PrimeFaces组件的#{...}
属性中的EL oncomplete
。所以基本上,你正在处理页面渲染时的值,而不是在action方法中更改的值。
您最好ajax更新内联脚本,而不是执行oncomplete
。
<p:commandButton ... update="openWindow" />
<h:panelGroup id="openWindow">
<h:outputScript rendered="#{not empty xx.wpUrl}">
window.open('#{xx.wpUrl}', '_blank')
</h:outputScript>
</h:panelGroup>
不要忘记从按钮中移除async="false"
。