grails g:每个标签都没有显示任何内容

时间:2015-05-26 09:10:38

标签: grails grails-2.0

我正在使用grails 2.4.2。我需要从列表中显示一些值。这就是我使用g的原因:虽然它在控制器中工作正常,但是没有显示任何内容。我以前从未见过这个问题。请问有人请帮帮我吗?!!!以下是我的尝试:::

在我的控制器中##

def homePage() {
    def androidGameInstance = AndroidGameDist.listOrderByDownloadCount(order: 'desc',max: 10)
    androidGameInstance.each {
        println(it.downloadCount)
    }
    [androidGameInstance: androidGameInstance]
}

在我看来##

<body>
<g:each in="${androidGameInstance}" status="i" var="androidGameInstance">
    <p>value : ${androidGameInstance.downloadCount}</p>
</g:each>

1 个答案:

答案 0 :(得分:1)

试试这个:

控制器:

def homePage() {
    def androidGameInstanceList = AndroidGameDist.listOrderByDownloadCount(order: 'desc',max: 10)
    androidGameInstanceList.each {
        println(it.downloadCount)
    }
    [androidGameInstanceList: androidGameInstanceList]
}

GSP:

<g:each in="${androidGameInstanceList}" status="i" var="androidGameInstance">
    <p>value : ${androidGameInstance.downloadCount}</p>
</g:each>