我在
中有这个输入文字<input type="text" id="usernameId" name="username" placeholder="User" />
我想从属性文件中替换1个文本的占位符用户的文本,但我不知道是否可能
<input type="text" id="usernameId" name="username" placeholder="th:text="#{user.placeholder}"" />
答案 0 :(得分:13)
有一个特定的Thymeleaf属性:
<input type="text" id="usernameId" name="username" th:placeholder="#{user.placeholder}" />
它也可以这样写:
<input type="text" id="usernameId" name="username" th:attr="placeholder=#{user.placeholder}" />