0
我在Thymeleaf中創建了一個下拉列表,它功能正常。不過,我也希望在下拉列表中選擇一個選項。在下拉列表中預先選擇默認值
這裏是我到目前爲止的代碼:
<select id="selectOptions" th:field="*{selectedOption}">
<option th:each="option : ${searchOptions}"
th:value="${option.getOption()}"
th:text="${option.getOptionName()}">Options</option>
</select>
我將如何使用th:selected
標籤與此?在他們的網站上我沒有看到任何文檔。
感謝