gpt4 book ai didi

thymeleaf - th :text and th:value in Thymeleaf之间的区别

转载 作者:行者123 更新时间:2023-12-05 01:18:00 27 4
gpt4 key购买 nike

我最近才开始在我的一个项目中使用 Thymeleaf。我见过一些在某些地方使用 th:text=${example} 的示例 th:value=${example}

我已经浏览了 Thymeleaf 文档,但找不到任何明确引用差异的内容,也没有关于 SO 的任何问题。

任何帮助将不胜感激!谢谢。

最佳答案

  • th:value是对html属性value的修改。对于button、input和option元素,value属性指定元素的初始值
  • th:text 用于标签正文修改。

div{background-color: lightblue; padding: 2px} // to highlight empty div
<!--th code:               <div th:value="${value}"/></div> -->
<br/>Result th:value div: <div value="sometext"/></div>

<!--th code: <form><input th:value="${value}"/></form>-->
<br/>Result th:value form: <form><input value="sometext"></form>

<!--th code: <div th:text="${value}"></div>
Same as: <div>[[${value}]]</div> -->
<br/>Result th:text div: <div>sometext</div>

这里是不同的文档 Thymeleaf attributes features

关于thymeleaf - th :text and th:value in Thymeleaf之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47374349/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com