gpt4 book ai didi

java - Spring 形式选择选项

转载 作者:行者123 更新时间:2023-11-30 11:20:16 24 4
gpt4 key购买 nike

在我的 JSP 中有这个片段

<sf:select multiple="true" path="author" id="authors" size="7" >
<sf:options items="${authors}" itemValue="name" itemLabel="surname"/>
</sf:select>

其中 ${authors} 是包含来自数据库的 Authors 对象的 ListAuthor 具有属性 namesurname。通过更改 JSP 中的 itemLabel=,我可以在列表中仅显示作者的 namesurname

如何在选项列表的一个字符串中显示name surname

最佳答案

在您的 jsp 中包含此 jSTL 标记:

    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

然后如果你想显示下拉选项,名字 - 姓氏:

    <c:forEach items="${authors}" var="author">
<sf:option value="${author.name}">
<c:out value="${author.name}"/> - <c:out value="${author.surname}"/>
</sf:option>
</c:forEach>

关于java - Spring 形式选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22838225/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com