Thymeleaf注释报错如何解决?
thymeleaf 模板 html 框架中注释使用报错
thymeleaf 框架中使用注释时可能会遇到报错,如图所示。这通常是由于注释格式不正确导致的。
正确使用 html 注释格式
官方文档指出,thymeleaf 模板中 html 注释后必须紧跟一个空格。因此,正确格式应为:
<p><!-- --></p>
其他注释方式
除了 html 注释格式,thymeleaf 还支持以下注释方式:
- xml 注释:
<!--/* todo: implement this feature */-->
- th 注释:
<!--th:block th:text="${...}">Content</th:block-->
需要注意的是,注释内容会从 thymeleaf 模板中移除,因此请谨慎使用。
以上就是Thymeleaf注释报错如何解决?的详细内容,更多请关注其它相关文章!