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 に答える