我正在尝试使用stripe框架进行文件上传,接受多个文件。我有一个文件上传工作。我正在尝试了解多个文件上传的Documentation。
根据文档,我需要做的就是将单个文件示例修改为:
<stripes:form>
<c:forEach ... varStatus="loop">
...
<stripes:file name="newAttachments[${loop.index}]"/>
...
</stripes:form>
的ActionBean
private List<FileBean> newAttachments;
public List<FileBean> getNewAttachments() {
return this.newAttachments;
}
public void setNewAttachment(List<FileBean> newAttachments) {
this.newAttachments = newAttachments;
}
我需要更换...
(特别是forEach循环中的那个)以使此示例正常工作?感谢。