我有一个itemList
,对于每个item
,显示一个评级的下拉列表。在用户对itemList
中的每个item
进行评级后,我想将这些评级存储在一个数组中。我该怎么做呢?以下selectedRate
为Integer
类型,代码无法解决问题。
<logic:iterate id="item" name="itemList">
<tr>
<td>
<html:select name="aForm" property="selectedRate">
<html:optionsCollection name="allRates" label="description" value="value" />
</html:select>
</td>
</tr>
</logic:iterate>
每个select
选项需要与一个特定的项相关联。
最简单的方法是使用Item
的集合,并给每个Item
一个rating
属性。在这个例子中,我使用了一个Integer
。
<html:select>
使用数组表示法,并直接设置每个项目的评级。(我使用表单本身的比率列表,和一个更简单的布局;
<logic:iterate id="item" name="ratesForm" property="itemList" indexId="i">
${item.name}
<html:select property="itemList[${i}].rating">
<html:optionsCollection name="ratesForm" property="rates" label="description" value="value" />
</html:select>
<br/>
</logic:iterate>
操作访问我们期望的项目评级:
RatesForm ratesForm = (RatesForm) form;
List<Item> items = ratesForm.getItemList();
for (Item item : items) {
System.out.println(item.rating);
}
如果项目没有关联的评级,则需要使用项目id键和评级值的映射。这个更复杂;我推荐收藏。
首先,由于索引属性的工作方式,映射将是Map<String, Object>
。除了map本身的普通getter之外,还提供索引方法:
private Map<String, Object> itemRatings;
public Map<String, Object> getItemRatings() {
return itemRatings;
}
public Object getItemRating(String key) {
return itemRatings.get(key);
}
public void setItemRating(String key, Object val) {
itemRatings.put(key, val);
}
JSP也是类似的,但是使用"()"
而不是 "[]"
来使用索引表单方法。
<logic:iterate id="item" name="ratesForm" property="itemList">
${item.name}
<html:select property="itemRating(${item.id})">
<html:optionsCollection name="ratesForm" property="rates" label="description" value="value" />
</html:select>
<br/>
</logic:iterate>
提交表单时,itemRatings
映射将包含表示每个项目ID的字符串键。键和值都是String
s,您需要手动将其转换为数值。