如何使用 thymeleaf 在 html 中设置属性

问题描述 投票:0回答:1

我有一个 Spring 应用程序,它为我提供了一个具有模型属性的城市。在 html 代码中,我有一个带有很多 .所以,我想知道如果选项值与模型中的属性值相等,如何设置要选择的选项。

<select class="form-control" id="county" required="required">
    <option>Roma</option>
    <option>Milano</option>
    <option>Paris</option>
    <option>London</option>
    <option selected="selected">Bucharest</option>
</selected

以及来自 Spring 应用程序的模型属性:

model.addAttribute("county", user.getCounty()); //which is "Bucharest" in this case
java html spring thymeleaf
1个回答
0
投票

添加 th:value 以选择组件

<select class="form-control" id="county" required="required" th:value="*{county}">

如果您有一个对象绑定到表单,请使用

th:field="*{county}"
代替

© www.soinside.com 2019 - 2024. All rights reserved.