我有一个小问题,我想知道是否可以在 JSF 2.2.3 中解决它我使用相对较新的 inputFile 标记,它工作正常:
<h:form enctype="multipart/form-data">
<h:inputFile id="auctionImage" value="#{auctionBean.image}"/>
<h:commandButton value="Add">
<f:ajax execute="auctionImage" render="images"/>
</h:commandButton>
<h:panelGroup id="images">
<ui:repeat value="#{auctionBean.productImages}" var="oneImage">
<h:graphicImage value="/image/#{oneImage.url}" width="200" height="171" />
</ui:repeat>
</h:panelGroup>
</h:form>
我想在网站上显示每个提交的 img 并有一个主要的 sumbit 按钮来一次提交它们。它工作正常。问题是我有三个按钮来浏览图像、提交图像和提交所有图像。在浏览器窗口中单击确定后是否可以提交?