0

我是java编程新手。我已经成功地创建并描述了模型发布、事件、播客和其他之间的联系。我需要显示 4 个链接到 4 个最新版本、4 个事件等等......

目前我的应用程序控制器包含:

public static void index() {
    Label lastLabel = Label.find("order by name desc").first();
    Release lastRelease = Release.find("order by title").first();
    Event lastEvent = Event.find("order by title").first();
    Podcast lastPodcast = Podcast.find("order by title").first();
    render(lastLabel, lastRelease, lastEvent, lastPodcast);
}

在 index.html 我使用:

${lastPodcast.artist.name}

和其他标签。我无法弄清楚如何将 4 个值放入数组中并显示在屏幕上。

4

1 回答 1

0
List<Podcast> podcasts = Podcast.find("order by name desc").fetch(4);
render(labels);

在 index.html 中:

#{list items: labels, as:'item'}
     <p>${item.artist.name}</p>
#{/list}

从这里查看标签: http ://www.playframework.com/documentation/1.1/tags

于 2013-07-23T13:51:45.190 回答