在相同的上下文中,我有另一个查询
<select multiple="multiple" name="prodSKUs">
<c:forEach items="${productSubCategoryList}" var="productSubCategoryList">
<option value="${productSubCategoryList}"${productSubCategoryList == productSubCategoryName ? 'selected' : ''}>${productSubCategoryList}</option>
</c:forEach>
</select>
并且请求中的相应设置类似于
for(int i=0;i<userProductData.size();i++){
String productSubCategoryName=userProductData.get(i).getProductSubCategory();
System.out.println(productSubCategoryName);
request.setAttribute("productSubCategoryName",productSubCategoryName);
}
这里我有多个选择下拉列表,即使我从for获得两个返回值,在UI中只有一个数据突然显示而不是第二个,代码中有什么问题?
答案 0 :(得分:28)
假设你有一个集合$ {roles}的元素放在组合中,$ {selected}选中的元素,它会是这样的:
<select name='role'>
<option value="${selected}" selected>${selected}</option>
<c:forEach items="${roles}" var="role">
<c:if test="${role != selected}">
<option value="${role}">${role}</option>
</c:if>
</c:forEach>
</select>
更新(下一个问题)
您正在覆盖属性“productSubCategoryName”。在for循环结束时,最后一个productSubCategoryName。
由于表达式语言的局限性,我认为解决这个问题的最佳方法是使用地图:
Map<String,Boolean> map = new HashMap<String,Boolean>();
for(int i=0;i<userProductData.size();i++){
String productSubCategoryName=userProductData.get(i).getProductSubCategory();
System.out.println(productSubCategoryName);
map.put(productSubCategoryName, true);
}
request.setAttribute("productSubCategoryMap", map);
然后在JSP中:
<select multiple="multiple" name="prodSKUs">
<c:forEach items="${productSubCategoryList}" var="productSubCategoryList">
<option value="${productSubCategoryList}" ${not empty productSubCategoryMap[productSubCategoryList] ? 'selected' : ''}>${productSubCategoryList}</option>
</c:forEach>
</select>
答案 1 :(得分:10)
在Servlet中执行:
String selectedRole = "rat"; // Or "cat" or whatever you'd like.
request.setAttribute("selectedRole", selectedRole);
然后在JSP中执行:
<select name="roleName">
<c:forEach items="${roleNames}" var="role">
<option value="${role}" ${role == selectedRole ? 'selected' : ''}>${role}</option>
</c:forEach>
</select>
它将打印HTML selected
元素的<option>
属性,以便您最终得到:
<select name="roleName">
<option value="cat">cat</option>
<option value="rat" selected>rat</option>
<option value="unicorn">unicorn</option>
</select>
除了问题:这是不组合框。这是一个下拉列表。组合框是可编辑下拉列表。
答案 2 :(得分:3)
真的很简单。您只需要在正确的选项中添加字符串'selected'即可。在以下代码中,$ {myBean.foo == val? 'selected':''}如果选项的值与bean值相同,则会添加字符串'selected';
<select name="foo" id="foo" value="${myBean.foo}">
<option value="">ALL</option>
<c:forEach items="${fooList}" var="val">
<option value="${val}" ${myBean.foo == val ? 'selected' : ' '}><c:out value="${val}" ></c:out></option>
</c:forEach>
</select>