とサーブレットのフォーム入力から読み取ることができます。私は私のサーブレットからこれらの値を読むことができる場合、私は疑問に思っては、どのように私は、入力の名前があるフォーム持っている名前=「製品[]」
<form>
<div class="form-group" >
<div class="col-md-1">
<input type="text" class="form-control" name="product[]"/>
</div>
<div class="col-md-4">
<input type="text" class="form-control" name="description[]"/>
</div>
</div>
<div class="form-group" >
<div class="col-md-1">
<input type="text" class="form-control" name="product[]"/>
</div>
<div class="col-md-4">
<input type="text" class="form-control" name="description[]"/>
</div>
</div>
<div class="form-group" >
<div class="col-md-1">
<input type="text" class="form-control" name="product[]"/>
</div>
<div class="col-md-4">
<input type="text" class="form-control" name="description[]"/>
</div>
</div>
</form>
を..すべての入力を反復する方法はありますかproduct[]
とdescription[]
?
フォームには追加ボタンがあり、同様の入力を作成します。追加ボタン機能を編集する前に、これが機能するかどうかは疑問でした。 – yaylitzis
パラメータの名前が 'description'ではなく' description [] 'であるためです。私。あなたは 'String [] description = request.getParameterValues(" description [] ");'を使う必要があります。 –
@JozefChocholacekそれは動作しません.. – yaylitzis