2017-05-05 152 views
3

我有一個Thymeleaf佔位符=「文本」

<input type="text" id="usernameId" name="username" placeholder="User" /> 

我要替換的佔位符用戶的文本1個文本從屬性文件該輸入文字,但我不知道如果有可能

<input type="text" id="usernameId" name="username" placeholder="th:text="#{user.placeholder}"" /> 

回答

7

沒有爲某個特定Thymeleaf屬性:

<input type="text" id="usernameId" name="username" th:placeholder="#{user.placeholder}" /> 

它也可以寫LIK e此:

<input type="text" id="usernameId" name="username" th:attr="placeholder=#{user.placeholder}" />