我正在使用<f:selectItem>
. 它填充了一个值“a 和 b”。In the dropdown list, the value is shown as 'a and b', but when this value is selected, it gets converted to 'a '& amp ;' b'。
xhtml:
<f:selectItems name="motivationType"
id="motivationTypeOptions"
value="#{promotionDetailManagedBean.motivationTypeSelectList}">
</f:selectItems>
豆 :
private List<SelectItem> motivationTypeSelectList;
列表的元素填充为
selectItemList.add(new SelectItem(key.toString(), paramMap.get(key)));
其中 paramMap 是地图
如何禁用此转换?