我有一个网络应用程序,我可以在其中选择一些要删除的内容。一个模态弹出窗口显示所选图像/闪光灯的预览。我按下一个按钮,一切正常。但是,当我选择要删除的另一个内容时,会弹出模式,并在一微秒内显示先前删除的文件,然后将其替换为我要删除的新内容。
显示动态内容的代码如下:
对于图像:
<p:graphicImage value="#{controller.tempImage}" height="110"
id="imageID" />
对于闪光灯:
<p:media value="#{controller.tempImage}" width="110" height="110"
id="imageID" player="flash" />
控制器:
public StreamedContent getTempImage() {
try {
FacesContext context = FacesContext.getCurrentInstance();
if (context.getRenderResponse() ) {
return new DefaultStreamedContent();
}
else {
tempImage = new DefaultStreamedContent(new FileInputStream("pathToFile"), "image/jpeg");
}
} catch (FileNotFoundException e) {
tempImage = new DefaultStreamedContent();
}
return tempImage;
}
我尝试tempImage
在加载之前和autoUpdate=true
模式中设置为 null 但没有运气。
删除按钮(显示删除模式的按钮):
<p:commandButton id="btnDelete" value="Delete" onclick="deleteModal.show();" actionListener="#{controller.initDelete}" update=":deleteForm">
删除表单(xhtml):
<h:form id="deleteForm" enctype="multipart/form-data" >
<p:dialog id="deleteDialog" widgetVar="deleteModal" modal="true" resizable="false" draggable="false" autoUpdate="true">
<p:outputPanel autoUpdate="false" >
<p:panelGrid id="panelId">
<p:row>
<p:column>
<p:panelGrid id="bannerPanel">
<p:row>
<p:column>
<p:graphicImage value="#{controller.tempImage}" height="110" id="imageID" />
</p:column>
</p:row>
</p:panelGrid>
</p:column>
</p:row>
<f:facet name="footer">
<p:row>
<p:column>
<p:commandButton id="doDeleteBtn" value="Delete"
actionListener="#{controller.delete}" >
</p:commandButton>
</p:column>
</p:row>
</f:facet>
</p:panelGrid>
</p:outputPanel>
</p:dialog>