在使用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被認為是內聯表達式,所以渲染錯誤