我研究百里香,但我不知道这是什么意思:这个领域

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

我尝试用一​​些文件做一个下拉列表,我发现这个例子,我不知道它应该包含th:field。如果我有什么选择值,请你告诉我它应该包含春季的post方法吗?请帮我!! :)

<select th:field="*{type}">
<option th:each="type : ${allTypes}" 
      th:value="${type}" 
      th:text="#{${'seedstarter.type.' + type}}">Wireframe</option>
 </select>
java spring web thymeleaf
1个回答
0
投票

正如在Tutorial: Thymeleaf + Spring中所提到的(转到7.2输入),它说它是一个与你的表单和bean绑定的模型。

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