当h:commandlink与target =“_ blank”一起使用时,我的h:commandLink在同一页面/窗口上打开/预览pdf文档。我希望它能在浏览器的新标签页中打开
哪里可能是错误?
Preview.xhtml代码:
<h:commandLink id="DocUpoadPreview" action="#{documentController.previewUploadedFile}" value="Preview" target="_blank" >
</h:commandLink>
在previewuploadedFile()中,操作encription / decryption和其他一些使用pdf的进程是必需的,这就是为什么不使用h:outputlink的原因。在操作过程之后,我想重定向到另一个页面(previewUploadedDoc.xhtml),该页面使用primefaces p:media标签来预览文档。
public String previewUploadedFile() throws Exception {
//decryption process and adding water mark here//
FacesContext.getCurrentInstance().getExternalContext()
.redirect("previewUploadedDoc.xhtml");}
答案 0 :(得分:3)
试一试:
<h:commandLink id="DocUpoadPreview" action="#{documentController.previewUploadedFile}" value="Preview" target="_new" />
答案 1 :(得分:-1)
target =“ _ new”不是target的有效值。它将_new定义为新页面的名称。