你应该在你的应用程序中使用这样的路径:
<uploadr:add name="ComonUp10" path="uploadFile/" direction="up" maxVisible="8" unsupported="/my/controller/action" rating="true" voting="true" colorPicker="true" maxSize="204800000" />
这里的 uploadFile/ 将是 grails 应用程序中 web-app 目录中的一个文件夹。
然后您将能够看到已经上传的文件:
<% def path = new File("uploadFile/") %>
<uploadr:add name="mySecondUploadr" path="${path}" direction="up" maxVisible="5" unsupported="${createLink(plugin: 'uploadr', controller: 'upload', action: 'warning')}">
<% path.listFiles().each { file -> %>
<uploadr:file name="${file.name}">
<uploadr:fileSize>${file.size()}</uploadr:fileSize>
<uploadr:fileModified>${file.lastModified()}</uploadr:fileModified>
<uploadr:fileId>myId-${RandomStringUtils.random(32, true, true)}</uploadr:fileId>
</uploadr:file>
<% } %>
</uploadr:add>
为了在没有上传器的情况下显示在该目录中上传的图像,您可以在 GSP 页面上添加图像标签,如下所示:
<img class="" src="${resource(dir:'uploadFile',file:'your-image.jpg')}" />
您可以在每个循环中添加图像,并让它们像我一样:
<g:each in="imageContainingList" var="oneRowObject">
<img class="" src='${resource(dir:"uploadFile", file:"${oneRowObject.imageFile}.jpg")}' />
</g:each>
或者,如果您想列出 uploadFile 文件夹中的所有图像,则可以尝试:
您必须在控制器中收集所有图像名称,将它们传递给视图并使用 grails 图像标签显示它们。
要收集所有图像名称,您需要 grails 应用程序的路径:
def showImageGalleryControllerFunction(){
def imageDir = grailsAttributes.getApplicationContext().getResource("/uploadFile/").getFile().toString()
//Collect image names
def images = []
new File(imageDir).eachFileMatch (~/.*.png/) { file ->
images << file.getName()
}
[images:images]
}
并在您的 showImageGalleryControllerFunction.gsp 文件中:
<g:each in="${images}" var="image">
<g:img dir="images" file="$image" />
</g:each>