在Grails中的gsp / view中运行/执行查询

时间:2013-05-28 03:46:39

标签: grails

图像控制器具有功能

def scaled = {
    log.debug("SCALED IMAGE " + params)
    response.setContentType('image/jpeg')
    response.setHeader('Cache-control', 'no-cache')
    def userId = session.selectedUser.id
    if(params.userId){
      userId = params.userId
    }
    if(params?.id != null && !(params?.id.empty)){
      params.maxWidth?: 20.00
      params.maxHeight?: 20.00
      response.outputStream << imageProxyService.loadImage(params.id, securityService.passwordEncoder(userId.toString()),params.maxWidth, params.maxHeight)
    }
  }

和个人资料照片的文件名存储在用户表中。 用户有很多状态,我想根据显示的状态加载用户的个人资料照片。我的状态gsp如下所示:

<g:each in="${statusList}" status="i" var="status" status="i">
          <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
            <tr><td><img id="profile_photo" src="${createLink(controller:'image', action:'profilePhoto', id:status.photo)}" alt="" title="" />
              </td></tr>
          </tr>
        </g:each>

我在状态控制器中使用的查询:

def alllist = {
        log.debug("BEGIN IWI PROFILE")
        def statusList = []


            def sql = new Sql(dataSource);

            def statusQuery = """SELECT c.id, c.status_message, c.status_type as profile, se.id, se.photo FROM user_account se, status c
                    WHERE
                    c.user_account_id = se.id
                    GROUP BY se.id, c.id, c.status_message, c.status_type, se.photo"""


            def result = sql.rows(statusQuery);

            def userQuery = """not sure """
            if (result){
                log.debug("GOT SOME RESULTS IN PERSONAL user" + result)
                result.each() { status ->
                    def userResult = sql.firstRow(userQuery, [status.id])
                    if (userResult){
                        status['userId'] = userResult.id
                    } else {
                        status['userId'] = ""
                    }
                    statusList += status
                }
            }


        render(template: "alllist", model: [statusList: statusList])

请注意:这样我就可以获得所有照片,但照片仅显示给会话用户。

<img id="profile_photo" src="/myApp/image/profilePhoto/9edd692580d148c791c6c2aa3510605a95ba6de6.jpg" alt="" title=""/>

2 个答案:

答案 0 :(得分:2)

我会创建一个TagLib。实际渲染照片的方式取决于UserAccount.photo字段中存储的内容。我会假设它是图像的绝对URL。

class UserTagLib {

    def photo = {attrs ->
        UserAccount u = attrs.user
        out << "<img src=${u.photo}/>"
    }

}

您可以在GSP中使用它,如:

<user:photo user="${status.userAccount}"/>

..假设您在名为status

的变量中循环遍历Status对象列表

答案 1 :(得分:1)

你可以使用这个:

<img src="http://applicationUrl/images/${u.photo}" />

<img src="${createLink(dir:'images',file: u.photo}" />

可以使用它们,但由于现在不推荐使用创建链接,我建议使用:

相同的资源

<img src="${resource(dir: 'images', file: 'file.jpg')}"/>

更多信息可在以下网址找到:

http://grails.org/doc/2.2.1/ref/Tags/resource.html

关于资源