以下问题:我尝试更改textarea的文本 我正在使用Sping和Thymeleaf 现在我的代码看起来像这样:
春天:
[...]
modelMap.addAttribute("Email", "035and so on");
modelMap.addAttribute("Notes", "Please take this text and use it!");
[...]
Thymeleaf:
[...]
<div class="col-sm-6 col-md-6 col-lg-6">
<input name="Tel" class="form-control" placeholder="Telefonnummer"
th:value="${Tel}" style="width: 100%;" />
</div>
<div><textarea class="form-control" rows="12"
style="margin-top: 10px;" placeholder="Sonstige Bemerkungen"
name="notes" th:field="*{Notes}">
</textarea></div>
[...]
电话串工作正常,但我不知道如何访问
多行文本。如果有人可以帮助我,我会很高兴。
答案 0 :(得分:4)
您可以使用th:text
它也可以使用。我喜欢@Amy的方式。
答案 1 :(得分:0)
我遇到了同样的问题,您可以尝试使用th:text,它对我有用。
th:text="${Notes}"