我正在使用p:galleria(primefaces 3.2),它在FF和chrome中运行良好。但有时它在IE9中没有显示,IE8永远不会显示它。
IE9:当我清除浏览器缓存并重新加载页面时,库正确显示。但是当我重新加载页面时,画廊没有显示。我需要清除浏览器缓存,然后再次显示。
这是galleria代码
<f:view
<ui:composition
<ui:define name="content">
<f:view>
<f:subview id="fleetvehicleinfo">
<h:form
.
.
<p:galleria value="#{vehicleRemarketingDetail.vehicle.Pictures_Set}" var="picture" panelWidth="470" panelHeight="350" frameWidth="110" frameHeight="80" >
<p:graphicImage value="/vehicle/remarketing/image/#{picture.document_id}.jpg" height="350" width="470" />
</p:galleria>
</h:form>
</f:subview>
</f:view>
</ui:define>
任何人都知道错误是什么以及如何让它发挥作用?
答案 0 :(得分:0)
尝试在标题的开头添加:
<f:facet name="first">
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
</f:facet>