SpringBoot使用thymeleaf和layui时遇到的问题

Posted LHD1998

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot使用thymeleaf和layui时遇到的问题相关的知识,希望对你有一定的参考价值。

在使用thymeleaf时报错
An error happened during template parsing (template: "class path resource [templates/mainPage/main.html]" - line 134, col 168)
我最后找了 很久发现报错的那一行有个HTML结束标签不对,改好之后页面就可以正常显示了。

每个人报的错误都可能不同,仔细看一下报错的内容和具体行数。




thymeleaf+layui加载页面渲染时TemplateProcessingException: Could not parse as expression: "
org.attoparser.ParseException: Could not parse as expression
也就是把cols后的[[ ]]变为

[

    [

    ]

]

因为[[…]]之间的表达式在thymeleaf被认为是内联表达式,所以渲染错误

以上是关于SpringBoot使用thymeleaf和layui时遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot使用thymeleaf模板

springboot thymeleaf引入css和js必须添加th吗

SpringBoot之thymeleaf的使用

springboot中使用thymeleaf模板引擎

SpringBoot入门之Thymeleaf的使用一

SpringBoot--thymeleaf使用和页面国际化