所以我有一个类似于下图的弹簧绑定下拉菜单。我的问题是,只要 getAllID 值为 true,我就想将 ALL ID 显示为所选选项。我知道所选值是基于弹簧绑定元素提供的值,在这种情况下studentID
,但无论如何我可以在我的布尔条件为真时覆盖它?
<spring:bind path="student.studentID">
<select name="${status.expression}" value="${status.value}">
<option />
<option value="001">1</option>
<option value="002">2</option>
<option value="003">3</option>
<option value="ALLID"
<c:if test='${student.getAllID eq true}'> Selected </c:if>>ALL ID
</option>
</select>
</spring:bind>