当前位置:  开发笔记 > 编程语言 > 正文

如何在Grails GSP中显示图像?

如何解决《如何在GrailsGSP中显示图像?》经验,为你挑选了0个好方法。

我还在学习Grails,似乎遇到了绊脚石.

以下是2个域类:

class Photo {
    byte[] file 

    static belongsTo = Profile
}


class Profile {
    String fullName
    Set photos

    static hasMany = [photos:Photo]     
}

相关的控制器代码段:

class PhotoController {

    def viewImage = {

      def photo = Photo.get( params.id )
      byte[] image = photo.file 
      response.outputStream << image

    } 
} 

最后是GSP片段:


现在我如何访问照片以便它将显示在GSP上?我很确定这 profileInstance.photos.get(1).id是不正确的.

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有