gpt4 book ai didi

grails - Gorm findAllBy 里面 gsp 的疑问

转载 作者:行者123 更新时间:2023-12-02 08:54:00 25 4
gpt4 key购买 nike

谁能告诉我为什么这有效

<g:each var="n" in="${com.pp.News.list()}">
<h2>${n.t}</h2>
<p>${n.tx}</p>
</g:each>

但这不是吗?

<g:set var="news" value="${com.pp.News.findAllByShow(true,[sort:'prio', order:'desc',max:5])}" />
<g:each var="n" in="news">
<h2>${n.t}</h2>
<p>${n.tx}</p>
</g:each>

部分异常(exception)是

Exception Message: No such property: t for class: java.lang.String 

我怎样才能让它发挥作用?

谢谢

最佳答案

改变

<g:each var="n" in="news">

<g:each var="n" in="${news}">

您正在迭代“news”而不是新闻变量中的返回结果。

关于grails - Gorm findAllBy 里面 gsp 的疑问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2494915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com