如何为Thymeleaf输入字段添加默认值?

时间:2018-05-31 05:16:12

标签: thymeleaf

这是我的百里香形式输入字段。我想为它设置一个默认值。假设我想将“个人”设置为默认值。怎么做?

 <div class="col-sm-9">
                            <label th:if="${#fields.hasErrors('priceSearchDTO.partyType')}" th:errors="*{priceSearchDTO.partyType}"
                                   class="validation-message"></label>
                            <input type="text" th:field="*{priceSearchDTO.partyType}" placeholder="partyType"
                                   class="form-control"/>
                        </div>

另外我尝试了这个,但它不能像普通的html字段那样工作。

<div class="col-sm-9">
                        <label th:if="${#fields.hasErrors('priceSearchDTO.partyType')}" th:errors="*{priceSearchDTO.partyType}"
                               class="validation-message"></label>
                        <input type="text" th:field="*{priceSearchDTO.partyType}" placeholder="partyType" value="individual"
                               class="form-control"/>
                    </div>

1 个答案:

答案 0 :(得分:0)

有一个th:占位符属性。您可以使用此属性动态设置占位符属性的值,例如:

<input ...  th:placeholder="${#object.individualPlaceholder}" ...>

<input ...  th:placeholder="|Static and ${#object.dynamic}|" ...>

如果占位符是静态值,您仍然可以使用占位符属性:

<input ...  placeholder="Insert something" ...>

也可以为th:占位符使用静态值。