我正在使用Primefaces TabView,CommandButton和FileDownload来下载日志文件。下载完日志文件后,我想提供从服务器删除日志内容的选项。
最初删除日志文件按钮(deleteEventLogButton)已禁用,并且有一个自定义标题,指出“删除日志 - 需要导出”。导出日志后,应启用该按钮,标题应显示“删除日志”。
我遇到的问题是,即使在导出事件成功完成后,仍然禁用了删除日志文件按钮,并且标题显示为“删除日志 - 需要导出”。
我的猜测是在fileDownload值之前调用了exportEventLogButton-> Update =“deleteEventLogButton”。
导出日志后,我可以点击“F5”并刷新页面,并启用deleteEventLogButton,显示正确的标题。
JSF - 代码段
<p:tabView id="logView">
<p:tab id="eventLogTab" title="Security Events">
<p:panelGrid ...>
<p:commandButton id="exportEventLogButton" icon="ui-icon-disk" styleClass="c25" ajax="false" title="Export Log" disabled="#{empty managedCmsLogsBean.eventLogEntityList}" update="deleteEventLogButton">
<p:fileDownload value="#{managedCmsLogsBean.exportEventLogFiles()}"/>
</p:commandButton>
<p:commandButton id="deleteEventLogButton" icon="ui-icon-trash" styleClass="c25" ajax="false" title="#{managedCmsLogsBean.deleteEventLogCaption}" disabled="#{! managedCmsLogsBean.eventLogExported}" action="#{managedCmsLogsBean.clearEventLogs()}" update="eventLogTab" />
</p:panelGrid>
<p:dataTable value="#{managedCmsLogsBean.eventLogEntityList}" ...>
...
</p:dataTable>
</p:tab>
</p:tabView>
Backing Bean - Snippet
private boolean eventLogExported;
public StreamedContent exportEventLogFiles() {
eventLogExported = true;
return logFileUtility.exportSecurityEventLog(eventLogEntityList, eventLogStartDate, eventLogStopDate);
}
public boolean isEventLogExported() {
return eventLogExported;
}
public void setEventLogExported(boolean value) {
eventLogExported = value;
}
public String getDeleteEventLogCaption() {
return eventLogExported ? "Delete Logs" : "Delete Logs - Export Required";
}
我尝试在FileDownload中移动更新事件,但它没有什么区别。
<p:commandButton id="exportEventLogButton" icon="ui-icon-disk" styleClass="c25" ajax="false" title="Export Log" disabled="#{empty managedCmsLogsBean.eventLogEntityList}">
<p:fileDownload value="#{managedCmsLogsBean.exportEventLogFiles()}">
<p:ajax update="deleteEventLogButton"/>
</p:fileDownload>
</p:commandButton>
我现在已经搜索了几天,并且发现了许多与此问题非常接近的问题...但没有一个有帮助。 :(
只是为了使事情变得清晰......我没有出口问题。问题是导出完成后未启用“删除日志文件”按钮。
答案 0 :(得分:27)
p:commandButton
是(必须是)非AJAX按钮(您通过添加ajax="false"
属性来设置此项)。在这种情况下,update
属性和p:ajax
标记没有任何意义(因为它们仅适用于AJAX请求)。当您下载文件时,您的应用程序会发送某种类型的流式传输,并且您会看到保存文件对话框。您的页面未刷新。因此,您必须使用PrimeFaces.monitorDownload
来执行此操作:
<p:commandButton id="exportEventLogButton"
icon="ui-icon-disk"
styleClass="c25"
ajax="false"
title="Export Log"
disabled="#{empty managedCmsLogsBean.eventLogEntityList}"
onclick="PrimeFaces.monitorDownload(null, stop)">
并添加将更新第二个按钮的停止功能:
<p:remoteCommand name="stop" update="deleteEventLogButton"/>
答案 1 :(得分:2)
正如Balusc所回答的那样,在question(revisions)中,我们无法从单个请求获得两次响应,下载后刷新页面,更好地使用下面的java脚本下载link(p:commandbutton)onclick tag。
示例:
<p:commandButton ajax="false" icon="ui-icon-arrowstop-1-s" onclick="setTimeout('location.reload();', 1000);" action="#{managedBean.downloadMethod}" />
这将在1秒后自动刷新页面,同时即在刷新之前,您将获得下载文件,根据您的下载响应时间,增加该脚本中的秒数。 秒数不应低于下载响应时间。
答案 2 :(得分:1)
您是否尝试将eventLogExported / isEventLogExported从布尔值更改为布尔值或字符串?