0

我正在使用 PrimeFaces JSF 库和以下代码在弹出对话框中打开一个页面:

<p:commandLink ajax="false" onclick="PopupMultiFileSelect('multi_file_select.faces', 'Select files','500','300'); return false;">
    <h:graphicImage style="border: none" value="./img/add.jpg"/> 
</p:commandLink>

这是javascript代码:

function PopupMultiFileSelect(pageURL, title, w, h) 
{
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var childWin = window.open (pageURL, '_blank', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);

if ( childWin.opener==null ) 
    childWin.opener = self;

return childWin;
}

我在弹出页面中所做的只是选择一些文件名并将名称放在字符串列表中,如下所示:

    List<String> fileNames;

我如何将列表传递到调用者页面?

4

1 回答 1

0

您可以使用 f:param 将信息传递到另一个页面。看这个例子:

<f:param name="listnames" value="#{bean.fileNames}" />
于 2012-04-23T15:16:27.730 回答