すべてが静的なのでサービスを開始すると正常に動作するJSPページに、以下のようなHTMLのスニペットがあります。以下でご覧いただけますように、div内に異なる画像を表示しています<div class="row templatemorow">
。画像のURLのみが異なり、他のすべてのクラス、フィールドは同じです。 JSPページでjstlを使ってdivを動的に生成する方法はありますか?
<div class="row templatemorow">
<!-- How to generate these below div dynamically and just change the image url -- >
<!-- First Image -->
<div class="hex col-sm-6">
<div>
<div class="hexagon hexagon2 gallery-item">
<div class="hexagon-in1">
<div class="hexagon-in2" style="background-image: url(images/gallery/1.jpg);">
<div class="overlay">
<a href="images/gallery/1.jpg" data-rel="lightbox" class="fa fa-expand"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Second Image -->
<div class="hex col-sm-6">
<div>
<div class="hexagon hexagon2 gallery-item">
<div class="hexagon-in1">
<div class="hexagon-in2" style="background-image: url(images/gallery/2.jpg);">
<div class="overlay">
<a href="images/gallery/2.jpg" data-rel="lightbox" class="fa fa-expand"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
は、今私は、私はちょうどこのマップをiteareし、その中に画像のURLを変更することにより、DIV
<div class="hex col-sm-6">
を動的に生成する方法を理解する必要があるので、私はすでにマップで
image url
を持っているように、これは動的にしようとしていますか?私はここでJSTLを使用しています。
私は鍵がtitle
であり、値はので、私はこのholder
マップを反復処理し、異なる画像のURLを動的にdiv要素を生成する必要がfull image url with http
であるholder
と呼ばれる文字列のマップに文字列を持っています。ですから、マップに10個のエントリがある場合は、class="hex col-sm-6"
と10個のdivが必要です。
<div class="row templatemorow">
<!-- How to generate these below div dynamically and just change the image url -- >
<c:forEach var="e" items="${images.holder}">
<!-- iterate holder map and generate div's accordingly -- >
</div>
私はJSTLに新しいですので、私は私のJSPページにholder
マップを繰り返すことによって、動的にこれらのdivのを生成することができますどのように理解することはできませんよ。
どうもありがとう:
その後、あなたのJSPページはのような3つのdivを生成します。これは完全に正常に動作します。マップの最初の要素か2番目の要素か3番目の要素を繰り返しているかどうかを知る必要がある場合は、どうすればよいですか?私はちょうど指示が必要です。基本的にif文でチェックを追加する必要があります。最初の要素であればこれを行い、2番目の要素であればそれを行います。 – user1950349
これをチェックしてください。http://stackoverflow.com/questions/4862605/increment-counter-with-loop –
とこのhttp://stackoverflow.com/questions/4587397/how-to-use-if-else-option-in -jstl –