0

我是 Grails 的新手。我正在使用上传插件上传图片。上传图片工作正常。我的图片已成功上传到我的目录中。

现在我想在我的 show.gsp 文件中显示这些图像。但我对此一无所知。这是我的上传者标签:

<uploadr:add name="fileupload" path="C:/Users/Shreshtt/workspace/groovypublish/grails-app/uploader" direction="up" maxVisible="8" unsupported="/uploadr/upload/warning" rating="true" voting="true" colorPicker="true" maxSize="0" />

另请参阅此演示..

我怎样才能在我的视图页面中显示这些图像。请帮忙。

4

1 回答 1

0

你应该在你的应用程序中使用这样的路径:

<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>
于 2013-07-09T10:01:53.140 回答