th:field 在 Spring 中使用 Thymeleaf 的参数语法

th:field parameter syntax using Thymeleaf in Spring

我一直看到 th:field 是这样使用的:

<form th:object="${bla}" method="POST">
   <div>
       <label for="bla"> </label>
       <input type="text" th:field="*{blabla}">
       <input type="submit" value="Search">
   </div>
</form>

但如果我必须按 2 个不同的字段进行搜索,是否有可能执行以下操作:

th:field="{blabla, thebla}"

快速回答: 它不允许这种行为 AFAIK。 检查 Official doc

解决方法:您始终可以发送一个带有分隔符的值..